예제 #1
0
파일: triangle.py 프로젝트: neodyme60/raypy
 def get_object_bound(self) -> BoundingBox:
     bb = BoundingBox()
     for p in self.points:
         bb = bb.get_union_point3d(p)
     return bb