Skip to content

Commit 370cb68

Browse files
committed
added comments
1 parent 34c447a commit 370cb68

File tree

1 file changed

+1
-1
lines changed
  • src/compas_rhino/geometry/surfaces

1 file changed

+1
-1
lines changed

src/compas_rhino/geometry/surfaces/nurbs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def rhino_surface_from_parameters(
6565
v_order = v_degree + 1
6666
u_point_count = len(points)
6767
v_point_count = len(points[0])
68-
is_rational = True # TODO: check if all weights are the same
68+
is_rational = True # TODO: check if all weights are equal? https://developer.rhino3d.com/guides/opennurbs/nurbs-geometry-overview/
6969
dimensions = 3
7070
rhino_surface = Rhino.Geometry.NurbsSurface.Create(dimensions, is_rational, u_order, v_order, u_point_count, v_point_count)
7171

0 commit comments

Comments
 (0)