e2e6711896
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
17 lines
174 B
Python
17 lines
174 B
Python
import pymesh
|
|
|
|
vertices = [
|
|
[0, 0, 0],
|
|
[1, 0, 0],
|
|
[1, 1, 0],
|
|
[0, 1, 0]
|
|
|
|
]
|
|
|
|
faces = [
|
|
[0, 1, 2],
|
|
[0, 2, 3]
|
|
]
|
|
|
|
mesh = pymesh.form_mesh(vertices, faces)
|