Feature Type Enumeration

Specifies the feature types that FindSurface can handle.

Syntax

typedef enum {
    FS_TYPE_ANY      = 0,
    FS_TYPE_PLANE    = 1,
    FS_TYPE_SPHERE   = 2,
    FS_TYPE_CYLINDER = 3,
    FS_TYPE_CONE     = 4,
    FS_TYPE_TORUS    = 5,
    FS_TYPE_BOX      = 6 /* reserved */
} FS_FEATURE_TYPE;

Members

FS_TYPE_ANY

FS_TYPE_PLANE

FS_TYPE_SPHERE

FS_TYPE_CYLINDER

FS_TYPE_CONE

FS_TYPE_TORUS

FS_TYPE_BOX

Notes

This enumeration is used by findSurface function to specify the feature type.
FS_TYPE_BOX is not supported on current version.

See also

findSurface