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_VEC4I32_
00025 #define _SO_MF_VEC4I32_
00026
00027 #include <Inventor/fields/SoSubField.h>
00028 #include <Inventor/SbLinear.h>
00029
00063 class SoMFVec4i32 : public SoMField {
00064
00065 SO_MFIELD_HEADER(SoMFVec4i32, SbVec4i32, const SbVec4i32 &);
00066
00067 SO_MFIELD_SETVALUESPOINTER_HEADER(int32_t);
00068 SO_MFIELD_SETVALUESPOINTER_HEADER(SbVec4i32);
00069 SO_FIELD_SUPPORT_MEMOBJ();
00070
00071 public:
00072
00073
00074
00075
00088 void setValues(int start, int num, const int32_t xyzw[][4]);
00089 #ifdef _WIN32
00090
00094 void setValues(int start, int num, int32_t xyzw[][4]);
00095 #endif
00096
00102 void set1Value(int index, int32_t x, int32_t y, int32_t z, int32_t w);
00103
00110 void set1Value(int index, const int32_t xyzw[4]);
00111
00117 void setValue(int32_t x, int32_t y, int32_t z, int32_t w);
00118
00124 void setValue(const int32_t xyzw[4]);
00125
00132 void set1Value(int index, const SbVec4f &vec4f);
00133
00140 void set1Value(int index, const SbVec4d &vec4d);
00141
00147 void setValue(const SbVec4f &vec4f);
00148
00154 void setValue(const SbVec4d &vec4d);
00155
00163 void setValues(int start, int num, const SbVec4f *vec4f);
00164
00172 void setValues(int start, int num, const SbVec4d *vec4d);
00173
00174 private:
00175 static void initClass();
00176 static void exitClass();
00177 virtual void writeBinaryValues(SoOutput*, int , int ) const;
00178 virtual SbBool readBinaryValues( SoInput*, int, int );
00179
00180 private:
00181
00182 virtual void writeBinaryValues(SoOutput *out) const;
00183 virtual SbBool readBinaryValues(SoInput *in, int numToRead);
00184
00185 };
00186
00187 #endif
00188
00189
00190