I feel stupid for even asking this here, but i am really stumped with this:
import Rhino.Geometry as rg
pline = rg.Polyline()
for i in range(0, 10):
pline.Add(rg.Point3d(i, 0, 0))
print(type(pline)) #Outputs: <class 'Rhino.Geometry.Polyline'>
a = pline # This outputs a list of 10 points???
Update: even simpler - passing a polyline it becomes a point list, that cant be meant like this?
I know that Polylines are a bit of a strage object internally - just some kind of list structure, but this should not be…