int cvxPartFaceMesh ( int idFace, /* i: index of face */ double chord, /* i: chordal control type(0.01 as default, 0.01-1) */ double sideSize, /* i: the side length */ int *count, /* o: count of svxTriangle */ svxTriangle** pnts /* o: points of triangle */ ) /* DESCRIPTION: Outputs a list of the triangular facets used to display the specified face at specified chord control type and side length. Memory for "pnts" is allocated by this function. It MUST be deallocated by the calling procedure with cvxMemFree. It is assumed the specified face (idFace) resides in the active part. Note: this function outputs only the points of triangles, the Normal of svxTriangle is not output. Returns 1 if function fails; 0 if it succeeds. */ ________________________________________________________________________________ int cvxPartFaceMeshPnts ( int idFace, /* i: index of face */ double chord, /* i: chordal control type(0.01 as default, 0.01-1) */ double sideSize, /* i: the side length */ int *count, /* o: count of points */ svxPoint **pnts /* o: points list of all triangles */ ) /* DESCRIPTION: Outputs a list of the triangular facets' points of the specified face at specified chord control type and side length. (no repeat points) Memory for "pnts" is allocated by this function. It MUST be deallocated by the calling procedure with cvxMemFree. It is assumed the specified face (idFace) resides in the active part. Returns 1 if function fails; 0 if it succeeds. */ ________________________________________________________________________________