Category Geometry items, Object ProCurve

Function ProCurveXyzdataEval


Description
Evaluates the specified curve at the parameter. If you pass a composite curve in p_curve, both deriv1 and deriv2 should be NULL.
Replacement in Object TOOLKIT: pfcGeomCurve::Eval3DData
Synopsis
#include <ProCurve.h>
ProErrorProCurveXyzdataEval(
ProCurve p_curve
/* (In)
The curve handle
*/
double curve_param
/* (In)
The normalized parameter on the curve
*/
ProVector xyz_point
/* (Out)
The resulting XYZ point
*/
ProVector deriv1
/* (Out)
The first derivative
*/
ProVector deriv2
/* (Out)
The second derivative
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully evaluated the curve.
PRO_TK_BAD_INPUTSOne or more of the input arguments are invalid.
PRO_TK_NOT_IMPLEMENTEDThe argument p_curve represents a composite curve, while deriv1 or deriv2 is not NULL.

Manual References:

  1. Pro/DEVELOP to Creo Toolkit Function Mapping: Equivalent Pro/DEVELOP Functions
  2. Core: 3D Geometry: Evaluating Surfaces, Edges, and Curves
  3. Core: 3D Geometry: Evaluating Surfaces, Edges, and Curves

Sample Code References:

  1. pt_examples ( TestAnalysisSrfCurve.c )
  2. pt_examples ( TestGeom.c )
  3. pt_examples ( TestGeom.c )
  4. pt_examples ( TestGeom.c )
  5. pt_examples ( TestGeom.c )
  6. pt_examples ( TestGeom.c )
  7. pt_examples ( UtilGeom.c )