RhinoNurbsCurve.from_points
- classmethod RhinoNurbsCurve.from_points(points, degree=3, is_periodic=False)
Construct a NURBS curve from control points.
- Parameters
points (list[
compas.geometry.Point
]) – The control points.degree (int, optional) – The degree of the curve.
is_periodic (bool, optional) – Flag indicating whether the curve is periodic or not.
- Returns