Field containing a homogeneous three-dimensional vector. More...
#include <Inventor/fields/SoSFVec4f.h>
Public Member Functions | |
virtual SoType | getTypeId () const |
const SoSFVec4f & | operator= (const SoSFVec4f &f) |
SoSFVec4f () | |
virtual | ~SoSFVec4f () |
const SbVec4f & | getValue () const |
void | setValue (const SbVec4f &newValue) |
const SbVec4f & | operator= (const SbVec4f &newValue) |
int | operator== (const SoSFVec4f &f) const |
int | operator!= (const SoSFVec4f &f) const |
virtual size_t | getValueSize () const |
void | setValue (float x, float y, float z, float w) |
void | setValue (const float xyzw[4]) |
void | setValue (const SbVec4d &vec4d) |
Static Public Member Functions | |
static SoType | getClassTypeId () |
Field containing a homogeneous three-dimensional vector.
Field containing a homogeneous three-dimensional vector.
SoSFVec4fs are written to file as four floating point values separated by whitespace.
SoSFVec4f::SoSFVec4f | ( | ) |
Default constructor.
virtual SoSFVec4f::~SoSFVec4f | ( | ) | [virtual] |
Destructor.
static SoType SoSFVec4f::getClassTypeId | ( | ) | [static] |
Returns the type identifier for this class.
Reimplemented from SoSField.
virtual SoType SoSFVec4f::getTypeId | ( | ) | const [virtual] |
Returns the type identifier for this specific instance.
Implements SoTypedObject.
const SbVec4f& SoSFVec4f::getValue | ( | ) | const [inline] |
Returns this field's value.
virtual size_t SoSFVec4f::getValueSize | ( | ) | const [inline, virtual] |
Get size of the value.
Reimplemented from SoField.
int SoSFVec4f::operator!= | ( | const SoSFVec4f & | f | ) | const [inline] |
Returns FALSE if otherField is of the same type and has the same value as this field.
Reimplemented from SoField.
Sets this field to newValue.
int SoSFVec4f::operator== | ( | const SoSFVec4f & | f | ) | const |
Returns TRUE if otherField is of the same type and has the same value as this field.
Reimplemented from SoField.
void SoSFVec4f::setValue | ( | const SbVec4d & | vec4d | ) |
Convenience method that allows you to specify a field value using a double precision variable.
Note that Open Inventor fields still store only single precision values, not double precision values. The specified value is converted to single precision, then stored.
void SoSFVec4f::setValue | ( | const float | xyzw[4] | ) |
Sets the field to the given value.
void SoSFVec4f::setValue | ( | float | x, | |
float | y, | |||
float | z, | |||
float | w | |||
) |
Sets the field to the given value.
void SoSFVec4f::setValue | ( | const SbVec4f & | newValue | ) |
Sets this field to newValue.