We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34c447a commit 370cb68Copy full SHA for 370cb68
src/compas_rhino/geometry/surfaces/nurbs.py
@@ -65,7 +65,7 @@ def rhino_surface_from_parameters(
65
v_order = v_degree + 1
66
u_point_count = len(points)
67
v_point_count = len(points[0])
68
- is_rational = True # TODO: check if all weights are the same
+ is_rational = True # TODO: check if all weights are equal? https://developer.rhino3d.com/guides/opennurbs/nurbs-geometry-overview/
69
dimensions = 3
70
rhino_surface = Rhino.Geometry.NurbsSurface.Create(dimensions, is_rational, u_order, v_order, u_point_count, v_point_count)
71
0 commit comments