ArrayOfCurvePoints

Return an array of points in the curve.

Synopsis

#include "FronTier.h" 

void ArrayOfCurvePoints(CURVE*,float*);

Input Parameters

CURVE*- pointer to operating curve

Output Parameters

float*- array of points (coordinates) on the curve

Notes

usage (2D and 3D): CURVE *curve; float *coords; ...... /* memory of coords must have be allocated */ ArrayOfCurvePoints(curve,coords);

Examples

Example0 output0_0