Curve.ComputeDerivatives
Method
Description:
Returns the vectors describing the curve at the specified parameter.
Returns the vectors describing the curve at the specified parameter.
Remarks:
The following is the meaning of the transformation members:
The following is the meaning of the transformation members:
- Origin is the point on the curve (equivalent to Evaluate(Double, Boolean)).
- BasisX is the tangent vector (the first derivative).
- BasisY is the second derivative. Note that for curves where this cannot be uniquely determined (e.g. lines), this will be a Zero vector.
- BasisZ is the bi-normal vector (tangent x normal). Note that for curves where normal cannot be uniquely determined (e.g. lines), this will be a Zero vector.
Parameters
Parameter | Type | Description |
---|---|---|
parameter | Double | The parameter to be evaluated. |
normalized | Boolean | 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
Type | Description |
---|---|
Transform | The transformation containing the point on the curve, the tangent vector, derivative of tangent vector, and bi-normal vector. |
Exceptions
Exception | Condition |
---|---|
ArgumentException | The given value for parameter is not finite |
ArgumentOutOfRangeException | The curve cannot be evaluated as normalized because it is unbound. -or- The parameter is not a valid value for normalized evaluation. |