sds_nentsel

int sds_nentsel (const char *prompt, sds_name entityname, sds_point point, sds_point ecs2wcs[4], struct sds_resbuf **nestblks);


Get information about this nested object.


NOTE Do not use this function in new programs. It is provided for backward compatibility with third-party applications written for earlier CAD programs. For new programs, use sds_nentselp.

This function works exactly like sds_nentselp except that instead of a 4 x 4 transformation matrix, sds_nentsel creates a 4 x 3 matrix stored as an array of four points.

Example

char *prompt;

sds_name entname;

sds_point entpoint;

sds_point ecs2wcs[4];

struct sds_resbuf *nestblks;

sds_nentsel("Pick your favorite object: ",entname, entpoint,

ecs2wcs, &nestblks);

Tell me about...

Programming Overview of SDS™ (Solutions Development System™)

sds_entsel

sds_nentselp