4bcfe2cb2d
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
13 lines
259 B
Python
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
|