Files
speckle_automate-basic_clas…/Geometry/mocks.py
T
Jonathon Broughton 4bcfe2cb2d
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
mypymesh mock
2023-11-13 03:32:35 +00:00

13 lines
259 B
Python

class mypymesh:
def __init__(self, vertices, faces):
self.vertices = vertices
self.faces = faces
@staticmethod
def boolean(_other, _operation):
return mypymesh([], [])
@property
def volume(self):
return 0