29 lines
620 B
C
29 lines
620 B
C
|
|
#ifndef VISUALSET_ST_H
|
|
#define VISUALSET_ST_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
typedef struct GEO_tdstVisualSet_
|
|
{
|
|
MTH_tdxReal xLastDistance ; /*/hysteresys. Works with only one viewport.*/
|
|
ACP_tdxIndex xNbLodDefinitions;
|
|
MTH_tdxReal *d_xThresholdsTable;
|
|
struct GEO_tdstGeometricObject_ **d_p_stLodDefinitions;
|
|
|
|
/*ANNECY JMD 17/02/98{*/
|
|
ACP_tdxHandleToRadiosity *d_hRLI ; /* array of RLI use by perso */
|
|
long lNumberOfRLI ; /* number of RLI in the array */
|
|
/*END ANNECY JMD }*/
|
|
|
|
}
|
|
GEO_tdstVisualSet ;
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|