00001 #ifndef COIN_SOPOINTDETAIL_H
00002 #define COIN_SOPOINTDETAIL_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <Inventor/details/SoSubDetail.h>
00028
00029 class COIN_DLL_API SoPointDetail : public SoDetail {
00030 typedef SoDetail inherited;
00031
00032 SO_DETAIL_HEADER(SoPointDetail);
00033
00034 public:
00035 SoPointDetail(void);
00036 virtual ~SoPointDetail();
00037 static void initClass(void);
00038 virtual SoDetail * copy(void) const;
00039
00040 int getCoordinateIndex(void) const;
00041 int getMaterialIndex(void) const;
00042 int getNormalIndex(void) const;
00043 int getTextureCoordIndex(void);
00044
00045 void setCoordinateIndex(const int idx);
00046 void setMaterialIndex(const int idx);
00047 void setNormalIndex(const int idx);
00048 void setTextureCoordIndex(const int idx);
00049
00050 private:
00051 int coordindex;
00052 int matindex;
00053 int normindex;
00054 int texcoordindex;
00055 };
00056
00057 #endif // !COIN_SOPOINTDETAIL_H