mcneel / rhino3dm

Libraries based on OpenNURBS with a RhinoCommon style
MIT License
614 stars 139 forks source link

No `constructor defined` for ... #118

Closed gtalarico closed 5 years ago

gtalarico commented 5 years ago

Ran into this error when trying to create Plane and Interval My goal was to create a rc.PlaneSurface

Are there any other ways of creating these objects in rhino3dm python?


>>> import rhino3dm as rc

>>> rc.Plane()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: rhino3dm._rhino3dm.Plane: No constructor defined!

>>> rc.Plane(rc.Point3d(0,0,0), rc.Vector3d(1,0,0))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: rhino3dm._rhino3dm.Plane: No constructor defined!
>>> 
mcneel-build commented 5 years ago

We're experimenting with using Github Issues for our open source projects. Meanwhile, RH3DM-47 has also been created on our main issue tracker.

sbaer commented 5 years ago

No, I need to add constructors for Plane. Shouldn't take too long

mcneel-build commented 5 years ago

Closed via RH3DM-47