1SoSFTime(3IV)() SoSFTime(3IV)()
2
3
4
6 SoSFTime — field containing an SbTime
7
9 SoField > SoSField > SoSFTime
10
12 #include <Inventor/fields/SoSFTime.h>
13
14 Methods from class SoSFTime:
15
16 static SoType getClassTypeId()
17 virtual void getTypeId() const
18 const SbTime & getValue() const
19 const SbTime & operator =(const SbTime & newValue)
20 void setValue(const SbTime & newValue)
21 int operator ==(const SoSFTime &f) const
22 int operator !=(const SoSFTime &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 multiple-value field that contains any number of time values.
50
51 SoSFTimes are written to file as a double-precision floating point
52 value representing the length of time in seconds. Absolute times are
53 measured relative to 00:00:00 GMT, January 1, 1970.
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 const SbTime & getValue() const
62 Returns this field's value.
63
64 const SbTime & operator =(const SbTime & newValue)
65 void setValue(const SbTime & newValue)
66 Sets this field to newValue.
67
68 int operator ==(const SoSFTime &f) const
69 int operator !=(const SoSFTime &f) const
70 Returns TRUE if f is of the same type and has the same value as this
71 field.
72
73
75 SbTime, SoField, SoSField, SoMFTime
76
77
78
79
80 SoSFTime(3IV)()