We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e98a5fe commit 12c2c71Copy full SHA for 12c2c71
geomdl/Abstract.py
@@ -664,7 +664,7 @@ def bbox(self):
664
if self._bounding_box is None or len(self._bounding_box) == 0:
665
self._eval_bbox()
666
667
- return self._bounding_box
+ return tuple(self._bounding_box)
668
669
def _eval_bbox(self):
670
""" Evaluates bounding box of the surface. """
@@ -684,7 +684,7 @@ def _eval_bbox(self):
684
if arr[0] > arr[1]:
685
bbmax[i] = arr[0]
686
687
- self._bounding_box = (tuple(bbmin), tuple(bbmax))
+ self._bounding_box = [tuple(bbmin), tuple(bbmax)]
688
689
# Runs visualization component to render the surface
690
def render(self, **kwargs):
0 commit comments