[docs]classBoundary(BlenderObject):"""A boundary for cells."""def__init__(self,obj:bpy.types.Object,mat=None):super(Boundary,self).__init__(obj)self._mat=matself.obj.data.materials.append(mat)
[docs]defsetup_physics(self):"""Set up physics for the boundary."""BoundaryCollisionConstructor().construct(self.obj)
@propertydefsize(self)->int:"""Size of the boundary."""returnself.obj.size@size.setterdefsize(self,size:int):self.obj.size=size
[docs]defcreate_boundary(loc:tuple,size:float,mesh:str="icosphere"):"""Create a boundary. Args: loc: Center of the boundary. size: Radius of the boundary. mesh: Shape of the boundary. """ifmeshnotin["icosphere","cube"]:raiseValueError(f"Unsupported mesh type: {mesh}.""Supported types are 'icosphere' and 'cube'.")obj=create_mesh("Boundary",loc,mesh=mesh,size=size,subdivisions=4)bpy.context.scene.collection.objects.link(obj)boundary=Boundary(obj)boundary.setup_physics()boundary.hide()returnboundary