1SoCoordinate3(3IV)() SoCoordinate3(3IV)()
2
3
4
6 SoCoordinate3 — coordinate point node
7
9 SoBase > SoFieldContainer > SoNode > SoCoordinate3
10
12 #include <Inventor/nodes/SoCoordinate3.h>
13
14 Fields from class SoCoordinate3:
15
16 SoMFVec3f point
17
18 Methods from class SoCoordinate3:
19
20 SoCoordinate3()
21 static SoType getClassTypeId()
22
23 Methods from class SoNode:
24
25 void setOverride(SbBool state)
26 SbBool isOverride() const
27 SoNode * copy(SbBool copyConnections = FALSE) const
28 virtual SbBool affectsState() const
29 static SoNode * getByName(const SbName &name)
30 static int getByName(const SbName &name, SoNodeList &list)
31
32 Methods from class SoFieldContainer:
33
34 void setToDefaults()
35 SbBool hasDefaultValues() const
36 SbBool fieldsAreEqual(const SoFieldContainer *fc) const
37 void copyFieldValues(const SoFieldContainer *fc, SbBool
38 copyConnections = FALSE)
39 SbBool set(const char *fieldDataString)
40 void get(SbString &fieldDataString)
41 virtual int getFields(SoFieldList &resultList) const
42 virtual SoField * getField(const SbName &fieldName) const
43 SbBool getFieldName(const SoField *field, SbName &fieldName)
44 const
45 SbBool isNotifyEnabled() const
46 SbBool enableNotify(SbBool flag)
47
48 Methods from class SoBase:
49
50 void ref()
51 void unref() const
52 void unrefNoDelete() const
53 void touch()
54 virtual SoType getTypeId() const
55 SbBool isOfType(SoType type) const
56 virtual void setName(const SbName &name)
57 virtual SbName getName() const
58
59
61 This node defines a set of 3D coordinates to be used by subsequent ver‐
62 tex-based shape nodes (those derived from SoVertexShape) or shape nodes
63 that use them as control points (such as NURBS curves and surfaces).
64 This node does not produce a visible result during rendering; it simply
65 replaces the current coordinates in the rendering state for subsequent
66 nodes to use.
67
69 SoMFVec3f point
70 Coordinate point(s).
71
72
74 SoCoordinate3()
75 Creates a coordinate node with default settings.
76
77 static SoType getClassTypeId()
78 Returns type identifier for this class.
79
80
82 SoGLRenderAction, SoCallbackAction, SoGetBoundingBoxAction, SoRayPick‐
83 Action
84 Sets coordinates in current traversal state.
85
86
88 Coordinate3 {
89 point 0 0 0
90 }
91
93 SoCoordinate4, SoVertexShape
94
95
96
97
98 SoCoordinate3(3IV)()