Files
speckle_automate-basic_clas…/Geometry/p.py
T
Jonathon Broughton e2e6711896
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
Addition of logic from Beam vs Duct WIP function
2023-11-12 14:28:24 +00:00

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)