1SoTransformation(3IV)() SoTransformation(3IV)()
2
3
4
6 SoTransformation — Abstract base class for all geometric transformation
7 nodes
8
10 SoBase > SoFieldContainer > SoNode > SoTransformation
11
13 #include <Inventor/nodes/SoTransformation.h>
14
15 Methods from class SoTransformation:
16
17 static SoType getClassTypeId()
18
19 Methods from class SoNode:
20
21 void setOverride(SbBool state)
22 SbBool isOverride() const
23 SoNode * copy(SbBool copyConnections = FALSE) const
24 virtual SbBool affectsState() const
25 static SoNode * getByName(const SbName &name)
26 static int getByName(const SbName &name, SoNodeList &list)
27
28 Methods from class SoFieldContainer:
29
30 void setToDefaults()
31 SbBool hasDefaultValues() const
32 SbBool fieldsAreEqual(const SoFieldContainer *fc) const
33 void copyFieldValues(const SoFieldContainer *fc, SbBool
34 copyConnections = FALSE)
35 SbBool set(const char *fieldDataString)
36 void get(SbString &fieldDataString)
37 virtual int getFields(SoFieldList &resultList) const
38 virtual SoField * getField(const SbName &fieldName) const
39 SbBool getFieldName(const SoField *field, SbName &fieldName)
40 const
41 SbBool isNotifyEnabled() const
42 SbBool enableNotify(SbBool flag)
43
44 Methods from class SoBase:
45
46 void ref()
47 void unref() const
48 void unrefNoDelete() const
49 void touch()
50 virtual SoType getTypeId() const
51 SbBool isOfType(SoType type) const
52 virtual void setName(const SbName &name)
53 virtual SbName getName() const
54
55
57 This is the abstract base class for all nodes that perform geometric
58 transformations. It exists only to make it easy for applications to
59 test whether a particular node is a transformation node (that is, is
60 derived from this class).
61
63 static SoType getClassTypeId()
64 Returns type identifier for this class.
65
66
68 This is an abstract class. See the reference page of a derived class
69 for the format and default values.
70
72 SoAntiSquish, SoMatrixTransform, SoResetTransform, SoRotation, SoRota‐
73 tionXYZ, SoScale, SoSurroundScale, SoTransform, SoTransformManip,
74 SoTransformSeparator, SoTranslation SoUnits
75
76
77
78
79 SoTransformation(3IV)()