Files
Jonathon Broughton 2396810930 fixes
2023-11-13 05:28:12 +00:00

18 lines
412 B
Python

class mypymesh:
class Mesh:
def __init__(self, vertices, faces):
self.vertices = vertices
self.faces = faces
@property
def volume(self):
return 0
@staticmethod
def boolean(mesh_a, mesh_b, operation):
return mypymesh.Mesh([], [])
@staticmethod
def form_mesh(vertices, faces):
return mypymesh.Mesh(vertices, faces)