CurveEvaluator2D.getThirdDerivative Method
Parent Object:
CurveEvaluator2DDefined in namespace "adsk::core" and the header file is <Core/Geometry/CurveEvaluator2D.h>
Description
Get the third derivative of the curve at the specified parameter position.
Syntax
"curveEvaluator2D_var" is a variable referencing a CurveEvaluator2D object.
(returnValue, thirdDerivative) = curveEvaluator2D_var.getThirdDerivative(parameter)
|
#include <Core/Geometry/CurveEvaluator2D.h
// Declare the output arguments. double parameter; Ptr<Vector2D> thirdDerivative; boolean returnValue = curveEvaluator2D_var->getThirdDerivative(parameter, thirdDerivative);
|
Return Value
boolean |
Returns true if the third derivative was successfully returned. |
Parameters
parameter |
double |
The parameter position to get the curve third derivative at. The parameter value must be within the range of the parameter extents as provided by getParameterExtents. |
thirdDerivative |
Vector2D |
The output third derivative vector at the parameter position specified. |
Version
Introduced in version August 2014