CurveEvaluator3D.getEndPoints Method
Parent Object:
CurveEvaluator3DDefined in namespace "adsk::core" and the header file is <Core/Geometry/CurveEvaluator3D.h>
Description
Get the end points of the curve.
Syntax
"curveEvaluator3D_var" is a variable referencing a CurveEvaluator3D object.
(returnValue, startPoint, endPoint) = curveEvaluator3D_var.getEndPoints()
|
#include <Core/Geometry/CurveEvaluator3D.h
// Declare the output arguments. Ptr<Point3D> startPoint; Ptr<Point3D> endPoint; boolean returnValue = curveEvaluator3D_var->getEndPoints(startPoint, endPoint);
|
Return Value
boolean |
Returns true if the end points were successfully returned. |
Parameters
startPoint |
Point3D |
The output start point of the curve. If the curve is unbounded at the start, this value will be null. |
endPoint |
Point3D |
The output end point of the curve. If the curve is unbounded at the end, this value will be null. |
Version
Introduced in version August 2014