1SoSFPath(3IV)() SoSFPath(3IV)()
2
3
4
6 SoSFPath — field containing a pointer to an SoPath
7
9 SoField > SoSField > SoSFPath
10
12 #include <Inventor/fields/SoSFPath.h>
13
14 Methods from class SoSFPath:
15
16 static SoType getClassTypeId()
17 virtual void getTypeId() const
18 SoPath * getValue() const
19 SoPath * operator =(SoPath * newValue)
20 void setValue(SoPath * newValue)
21 int operator ==(const SoSFPath &f) const
22 int operator !=(const SoSFPath &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 This field maintains a pointer to an SoPath instance, correctly main‐
50 taining its reference count.
51
52 SoSFPaths are written to file as the path they point to. See the SoPath
53 manual page for a description of the file format for a path.
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 SoPath * getValue() const
62 Returns this field's value.
63
64 SoPath * operator =(SoPath * newValue)
65 void setValue(SoPath * newValue)
66 Sets this field to newValue.
67
68 int operator ==(const SoSFPath &f) const
69 int operator !=(const SoSFPath &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, SoMFPath, SoPath
76
77
78
79
80 SoSFPath(3IV)()