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_VEC2I32_
00025 #define _SO_MF_VEC2I32_
00026
00027 #include <Inventor/fields/SoSubField.h>
00028 #include <Inventor/SbLinear.h>
00029
00031
00032
00033
00035
00063 class SoMFVec2i32 : public SoMField {
00064
00065
00066 SO_MFIELD_HEADER(SoMFVec2i32, SbVec2i32, const SbVec2i32 &);
00067 SO_MFIELD_SETVALUESPOINTER_HEADER(int32_t);
00068 SO_MFIELD_SETVALUESPOINTER_HEADER(SbVec2i32);
00069 SO_FIELD_SUPPORT_MEMOBJ();
00070
00071 public:
00072
00073
00074
00075
00076
00089 void setValues(int start, int num, const int32_t xy[][2]);
00090
00097 void set1Value(int index, int32_t x, int32_t y);
00098
00105 void set1Value(int index, const int32_t xy[2]);
00106
00112 void setValue(int32_t x, int32_t y);
00113
00119 void setValue(const int32_t xy[2]);
00120
00127 void set1Value(int index, const SbVec2f &vec2f);
00128
00135 void set1Value(int index, const SbVec2d &vec2d);
00136
00142 void setValue(const SbVec2f &vec2f);
00143
00149 void setValue(const SbVec2d &vec2d);
00150
00158 void setValues(int start, int num, const SbVec2f *vec2f);
00159
00167 void setValues(int start, int num, const SbVec2d *vec2d);
00168
00169 private:
00170
00171 static void initClass();
00172 static void exitClass();
00173 virtual void writeBinaryValues(SoOutput*, int , int ) const;
00174 virtual SbBool readBinaryValues( SoInput*, int, int );
00175
00176 private:
00177 virtual void writeBinaryValues(SoOutput *out) const;
00178 virtual SbBool readBinaryValues(SoInput *in, int numToRead);
00179 };
00180
00181 #endif
00182
00183