NurbsCurve.point_at

NurbsCurve.point_at(t)[source]

Compute a point of the curve at a parameter.

Parameters:
tfloat

The value of the curve parameter. Must be between 0 and 1.

Returns:
compas.geometry.Point

the corresponding point on the curve.

Raises:
ValueError

If the parameter is not in the curve domain.

See also

normal_at(), tangent_at(), binormal_at(), frame_at(), curvature_at()