Hello,
There are strange behaviors of the Rhino method from Mesh, CreateFromTessellation that I can’t understand and would appreciate some enlightenment on:
The method is functioning if I feed it with this :
ptobj = scriptcontext.doc.Objects.Find(pointID)
points.append(ptobj.PointGeometry.Location)
and not with this :
points.append(rs.PointCoordinates(pointID))
but the two seems to produce exactly the same results with objects of type Point3d in both cases
?
Yes, thank you, I swear I had an issue in previous tests, but it was probably another mistake of my fault…
But I take the opportunity of your response for a new question : I actually wanted to make a mesh as a constrained Delaunay triangulation, thus with a list of list of points as second argument to CreateFromTessellation, and with Iron Python, I get also a strange error on this nested list :
“Message: Error in IEnumeratorOfTWrapper.Current. Could not cast: System.Collections.Generic.IEnumerable`1[Rhino.Geometry.Point3d] in IronPython.Runtime.List”
That does not occur in python 3: can you explain this ?