ArrayOfIntfcPoints

Return an array of points in the interface.

Synopsis

#include "FronTier.h" 

void ArrayOfIntfcPoints(INTERFACE*,float*);

Input Parameters

INTERFACE*- pointer to operating interface

Output Parameters

float*- array of points (coordinates) in the interface

Notes

usage (2D and 3D): INTERFACE *intfc; float *coords; ...... /* memory of coords must have be allocated */ ArrayOfIntfcPoints(intfc,coords); There can be no logical order linking points between different curves. A better way is to use ArrayOfCurvePoints().

Examples

Example0 output0_0 Example2 output_0 output_2