1SoSFUInt32(3IV)() SoSFUInt32(3IV)()
2
3
4
6 SoSFUInt32 — field containing an unsinged int32_t integer
7
9 SoField > SoSField > SoSFUInt32
10
12 #include <Inventor/fields/SoSFUInt32.h>
13
14 Methods from class SoSFUInt32:
15
16 static SoType getClassTypeId()
17 virtual void getTypeId() const
18 int32_t uint32_t getValue() const
19 int32_t uint32_t operator =(int32_t uint32_t newValue)
20 void setValue(int32_t uint32_t newValue)
21 int operator ==(const SoSFUInt32 &f) const
22 int operator !=(const SoSFUInt32 &f) const
23
24 Methods from class SoField:
25
26 void setIgnored(SbBool ignore)
27 SbBool isIgnored() const
28 SbBool isDefault() const
29 virtual SbBool isOfType(SoType type) const
30 SbBool set(const char *valueString)
31 void get(SbString &valueString)
32 void touch()
33 SbBool connectFrom(SoField *fromField)
34 SbBool connectFrom(SoEngineOutput *fromEngine)
35 void disconnect()
36 SbBool isConnected() const
37 SbBool isConnectedFromField() const
38 SbBool getConnectedField(SoField *&writingField) const
39 SbBool isConnectedFromEngine() const
40 SbBool getConnectedEngine(SoEngineOutput *&engineOutput)
41 const
42 void enableConnection(SbBool flag)
43 SbBool isConnectionEnabled() const
44 int getForwardConnections(SoFieldList &list) const
45 SoFieldContainer * getContainer() const
46
47
49 A single-value field containg an unsigned 32-bit integer, representing
50 a number from 0 to 4,294,967,295.
51
52 SoSFUInt32s are written to file as a single uint32_t (32-bit) integer
53 in decimal, hexadecimal or octal format.
54
56 static SoType getClassTypeId()
57 virtual void getTypeId() const
58 Returns the type for this class or a particular object of this
59 class.
60
61 int32_t uint32_t getValue() const
62 Returns this field's value.
63
64 int32_t uint32_t operator =(int32_t uint32_t newValue)
65 void setValue(int32_t uint32_t newValue)
66 Sets this field to newValue.
67
68 int operator ==(const SoSFUInt32 &f) const
69 int operator !=(const SoSFUInt32 &f) const
70 Returns TRUE if f is of the same type and has the same value as this
71 field.
72
73
75 SoField, SoSField, SoMFUInt32
76
77
78
79
80 SoSFUInt32(3IV)()