OCCNurbsCurve.from_parameters
- classmethod OCCNurbsCurve.from_parameters(points, weights, knots, multiplicities, degree, is_periodic=False)
Construct a NURBS curve from explicit curve parameters.
- Parameters
points (List[
compas.geometry.Point
]) – The control points.weights (List[
float
]) – The weights of the control points.knots (List[
float
]) – The knots of the curve, without multiplicities.multiplicities (List[
int
]) – The multiplicities of the knots.degree (int) – The degree of the curve.
is_periodic (bool, optional) – Flag indicating that the curve is periodic.
- Returns