diff --git a/LoopStructural/datatypes/_bounding_box.py b/LoopStructural/datatypes/_bounding_box.py index a2e1eb25..c4ea65eb 100644 --- a/LoopStructural/datatypes/_bounding_box.py +++ b/LoopStructural/datatypes/_bounding_box.py @@ -547,10 +547,10 @@ def reproject(self, xyz, inplace=False): return xyz + self.global_origin def __repr__(self): - return f"BoundingBox({self.origin}, {self.maximum}, {self.nsteps})" + return f"BoundingBox(origin:{self.origin}, maximum:{self.maximum}, nsteps:{self.nsteps})" def __str__(self): - return f"BoundingBox({self.origin}, {self.maximum}, {self.nsteps})" + return f"BoundingBox(origin:{self.origin}, maximum:{self.maximum}, nsteps:{self.nsteps})" def __eq__(self, other): if not isinstance(other, BoundingBox):