Surface EditorAvailability LightWave® 6.0 The surface editor global allows you to control the surface editing interface. Global Call LWSurfEdFuncs *surfedf; surfedf = global( LWSURFEDFUNCS_GLOBAL, GFUSE_TRANSIENT ); The global function returns a pointer to an LWSurfEdFuncs. typedef struct st_LWSurfEdFuncs {
void (*open) (int);
void (*close) (void);
int (*isOpen) (void);
void (*setSurface) (LWSurfaceID);
void (*setPosition)(int x, int y);
void (*getPosition)(int *x, int *y, int *w, int *h);
} LWSurfEdFuncs;
|