Can we create a custom mesh by using rhino compute?
RhinoCompute seems to be still missing some modules such as MeshVertexList & MeshFaceList, which means custom meshes cannot be generated.
It could be nice if the following operation is available even in RhinoCompute as well.
mesh = Mesh()
mesh.Vertices.Add(0.0, 0.0, 1.0)
mesh.Vertices.Add(1.0, 0.0, 1.0)
mesh.Vertices.Add(2.0, 0.0, 1.0)
mesh.Vertices.Add(3.0, 0.0, 0.0)
mesh.Faces.AddFace(0, 1, 3, 2)
I would also like to know If you already have some alternative way to do this.
Thank you!