RhinoNurbsCurve.from_parameters
- classmethod RhinoNurbsCurve.from_parameters(points, weights, knots, multiplicities, degree, is_periodic=False)[source]
Construct a NURBS curve from explicit curve parameters.
- Parameters:
- pointslist[
compas.geometry.Point
] The control points.
- weightslist[float]
The control point weights.
- knotslist[float]
The curve knots, without duplicates.
- multiplicitieslist[int]
The multiplicities of the knots.
- degreeint
The degree of the curve.
- is_periodicbool, optional
Flag indicating whether the curve is periodic or not. Note that this parameters is currently not supported.
- pointslist[
- Returns: