Category Surface geometry, Object ProSplinesrfdata

Function ProSplinesrfdataInit


Description
Initializes a spline surface data structure.
Synopsis
#include <ProSurfacedata.h>
ProErrorProSplinesrfdataInit(
double* u_par_arr
/* (In)
A ProArray of U parameter grids
*/
double* v_par_arr
/* (In)
A ProArray of V parameter grids
*/
Pro3dPnt* points_arr
/* (In)
A ProArray of interpolant points
*/
ProVector* u_tan_arr
/* (In)
A ProArray of U derivatives at these points
*/
ProVector* v_tan_arr
/* (In)
A ProArray of V derivatives at these points
*/
ProVector* uvdev_arr
/* (In)
A ProArray of UV derivatives at the interpolant points
*/
int num_u
/* (In)
The size in U
*/
int num_v
/* (In)
The size in V
*/
ProSurfaceshapedata* p_surf_shape
/* (Out)
The spline surface
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully initialized the spline surface.
PRO_TK_BAD_INPUTSOne or more of the input arguments are invalid.

Manual References:

  1. Interface: Importing Features: Adding Surfaces
  2. Interface: Importing Features: Adding Surfaces

Sample Code References:

  1. pt_examples ( TestGeomdata.c )