Category Creating import and custom geometry, Object ProEdgedata

Function ProEdgedataGet


Description
Retrieves information from the edge data structure.

NOTE:

The function ignores the output argument pointers that are NULL.

Synopsis
#include <ProEdgedata.h>
ProErrorProEdgedataGet(
ProEdgedata* p_edge_data
/* (In)
The edge data structure
*/
int* p_edge_id
/* (Out)
The edge identifier
*/
int edge_surf_ids[2]
/* (Out)
The edge identifiers of the surfaces
*/
ProEdgeDir edge_directions[2]
/* (Out)
The edge directions on the surfaces
*/
ProUvParam** p_edge_uv_point_arr[2]
/* (Out)
The pointer to a ProArray of UV-points on the surfaces
*/
ProCurvedata* p_edge_uv_curve_data[2]
/* (Out)
The edge UV-curves on the surfaces
*/
ProCurvedata* p_edge_curve_data
/* (Out)
The edge XYZ-curve
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully retrieved the information.
PRO_TK_BAD_INPUTSThe input argument is invalid.

Manual References:

  1. Pro/DEVELOP to Creo Toolkit Function Mapping: Equivalent Pro/DEVELOP Functions

Sample Code References:

  1. pt_examples ( TestGeomdata.c )
  2. pt_examples ( UtilIntfData.c )