SurfaceEvaluator.getPointsAtParameters Method

Parent Object: SurfaceEvaluator
Defined in namespace "adsk::core" and the header file is <Core/Geometry/SurfaceEvaluator.h>

Description

Get the points on the surface that correspond to evaluating a set of parameter positions on the surface.

Syntax

"surfaceEvaluator_var" is a variable referencing a SurfaceEvaluator object.

(returnValue, points) = surfaceEvaluator_var.getPointsAtParameters(parameters)

#include <Core/Geometry/SurfaceEvaluator.h

// Declare the output arguments.
Point2D[] parameters;
Point3D[] points;
boolean returnValue = surfaceEvaluator_var->getPointsAtParameters(parameters, points);

Return Value

Type Description
boolean Returns true if the points were successfully returned.

Parameters

Name Type Description
parameters Point2D[] The array of parameter positions to evaluate the surface position at. Each parameter position must be within the range of the parameter extents as verified by isParameterOnFace.
points Point3D[] The output array of points corresponding to evaluating the curve at that parameter position. The length of this array will be equal to the length of the parameters array specified.

Version

Introduced in version August 2014