CurveEvaluator3D.getPointAtParameter Method
Parent Object:
CurveEvaluator3DDefined in namespace "adsk::core" and the header file is <Core/Geometry/CurveEvaluator3D.h>
Description
Get the point on the curve that corresponds to evaluating a parameter position on the curve.
Syntax
"curveEvaluator3D_var" is a variable referencing a CurveEvaluator3D object.
(returnValue, point) = curveEvaluator3D_var.getPointAtParameter(parameter)
|
#include <Core/Geometry/CurveEvaluator3D.h
// Declare the output arguments. double parameter; Ptr<Point3D> point; boolean returnValue = curveEvaluator3D_var->getPointAtParameter(parameter, point);
|
Return Value
boolean |
Returns true if the point was successfully returned. |
Parameters
parameter |
double |
The parameter position to evaluate the curve position at. The parameter value must be within the range of the parameter extents as provided by getParameterExtents. |
point |
Point3D |
The output curve position corresponding to evaluating the curve at that parameter position. |
Samples
Version
Introduced in version August 2014