2027 Method
Changes 0
M

Curve.Evaluate

Description:
Evaluates and returns the point that matches a parameter along the curve.
public XYZ Evaluate(
	double parameter,
	bool normalized
)
  • Double
    parameter
    The parameter to be evaluated.
  • Boolean
    normalized
    If false, param is interpreted as natural parameterization of the curve. If true, param is expected to be in [0,1] interval mapped to the bounds of the curve. Setting to true is valid only if the curve is bound.
Return Value XYZ The point evaluated along the curve.
  • The given value for parameter is not finite
  • The curve cannot be evaluated as normalized because it is unbound. -or- The parameter is not a valid value for normalized evaluation.