00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef _SO_MF_VEC3I32_
00025 #define _SO_MF_VEC3I32_
00026
00027 #include <Inventor/fields/SoSubField.h>
00028 #include <Inventor/SbLinear.h>
00029
00060 class SoMFVec3i32 : public SoMField {
00061
00062 SO_MFIELD_HEADER(SoMFVec3i32, SbVec3i32, const SbVec3i32 &);
00063
00064 SO_MFIELD_SETVALUESPOINTER_HEADER(int32_t);
00065 SO_MFIELD_SETVALUESPOINTER_HEADER(SbVec3i32);
00066 SO_FIELD_SUPPORT_MEMOBJ();
00067
00068 public:
00069
00070
00071
00072
00085 void setValues(int start, int num, const int32_t xyz[][3]);
00086 #ifdef _WIN32
00087
00091 void setValues(int start, int num, int32_t xyz[][3]);
00092 #endif
00093
00100 void set1Value(int index, int32_t x, int32_t y, int32_t z);
00101
00108 void set1Value(int index, const int32_t xyz[3]);
00109
00115 void setValue(int32_t x, int32_t y, int32_t z);
00116
00122 void setValue(const int32_t xyz[3]);
00123
00130 void set1Value(int index, const SbVec3f &vec3f);
00131
00138 void set1Value(int index, const SbVec3d &vec3d);
00139
00145 void setValue(const SbVec3f &vec3f);
00146
00152 void setValue(const SbVec3d &vec3d);
00153
00161 void setValues(int start, int num, const SbVec3f *vec3f);
00162
00170 void setValues(int start, int num, const SbVec3d *vec3d);
00171
00172 private:
00173 static void initClass();
00174 static void exitClass();
00175 virtual void writeBinaryValues(SoOutput*, int , int ) const;
00176 virtual SbBool readBinaryValues( SoInput*, int, int );
00177
00178 private:
00179
00180 virtual void writeBinaryValues(SoOutput *out) const;
00181 virtual SbBool readBinaryValues(SoInput *in, int numToRead);
00182
00183 };
00184
00185 #endif
00186
00187
00188