1SoNurbsProfile(3IV)() SoNurbsProfile(3IV)()
2
3
4
6 SoNurbsProfile — NURBS profile curve
7
9 SoBase > SoFieldContainer > SoNode > SoProfile > SoNurbsProfile
10
12 #include <Inventor/nodes/SoNurbsProfile.h>
13
14 Fields from class SoNurbsProfile:
15
16 SoMFFloat knotVector
17
18 Fields from class SoProfile:
19
20 SoMFInt32 index
21 SoSFEnum linkage
22
23 Methods from class SoNurbsProfile:
24
25 SoNurbsProfile()
26 static SoType getClassTypeId()
27
28 Methods from class SoNode:
29
30 void setOverride(SbBool state)
31 SbBool isOverride() const
32 SoNode * copy(SbBool copyConnections = FALSE) const
33 virtual SbBool affectsState() const
34 static SoNode * getByName(const SbName &name)
35 static int getByName(const SbName &name, SoNodeList &list)
36
37 Methods from class SoFieldContainer:
38
39 void setToDefaults()
40 SbBool hasDefaultValues() const
41 SbBool fieldsAreEqual(const SoFieldContainer *fc) const
42 void copyFieldValues(const SoFieldContainer *fc, SbBool
43 copyConnections = FALSE)
44 SbBool set(const char *fieldDataString)
45 void get(SbString &fieldDataString)
46 virtual int getFields(SoFieldList &resultList) const
47 virtual SoField * getField(const SbName &fieldName) const
48 SbBool getFieldName(const SoField *field, SbName &fieldName)
49 const
50 SbBool isNotifyEnabled() const
51 SbBool enableNotify(SbBool flag)
52
53 Methods from class SoBase:
54
55 void ref()
56 void unref() const
57 void unrefNoDelete() const
58 void touch()
59 virtual SoType getTypeId() const
60 SbBool isOfType(SoType type) const
61 virtual void setName(const SbName &name)
62 virtual SbName getName() const
63
64
66 This node specifies a NURBS curve that is used as a profile. The curve
67 is defined in the same way as a standard SoNurbsCurve, except that the
68 control points are constructed from the current set of profile coordi‐
69 nates, using the index field.
70
72 SoMFFloat knotVector
73 The knot vector for the NURBS curve. It must be a list of non-
74 decreasing floating point values.
75
76
78 SoNurbsProfile()
79 Creates a NURBS profile curve node with default settings.
80
81 static SoType getClassTypeId()
82 Returns type identifier for this class.
83
84
86 SoGLRenderAction, SoCallbackAction, SoRayPickAction
87 Adds a profile to the current traversal state.
88
89
91 NurbsProfile {
92 index 0
93 linkage START_FIRST
94 knotVector 0
95 }
96
98 SoLinearProfile, SoNurbsCurve, SoProfileCoordinate2, SoProfileCoordi‐
99 nate3
100
101
102
103
104 SoNurbsProfile(3IV)()