4D vector class. More...
#include <Inventor/SbVec.h>
Public Member Functions | |
SbVec4i32 () | |
SbVec4i32 (const int32_t v[4]) | |
SbVec4i32 (int32_t x, int32_t y, int32_t z, int32_t w) | |
int32_t | dot (const SbVec4i32 &v) const |
const int32_t * | getValue () const |
void | getValue (int32_t &x, int32_t &y, int32_t &z, int32_t &w) const |
void | negate () |
SbVec4i32 & | setValue (const int32_t v[4]) |
SbVec4i32 & | setValue (int32_t x, int32_t y, int32_t z, int32_t w) |
int32_t & | operator[] (int i) |
const int32_t & | operator[] (int i) const |
SbVec4i32 & | operator*= (int d) |
SbVec4i32 & | operator*= (double d) |
SbVec4i32 & | operator/= (int d) |
SbVec4i32 & | operator/= (double d) |
SbVec4i32 & | operator+= (const SbVec4i32 &u) |
SbVec4i32 & | operator-= (const SbVec4i32 &u) |
SbVec4i32 | operator- () const |
template<typename T > | |
SbVec4i32 (const T &v) | |
Friends | |
SbVec4i32 | operator* (const SbVec4i32 &v, int d) |
SbVec4i32 | operator* (const SbVec4i32 &v, double d) |
SbVec4i32 | operator* (int d, const SbVec4i32 &v) |
SbVec4i32 | operator* (double d, const SbVec4i32 &v) |
SbVec4i32 | operator/ (const SbVec4i32 &v, int d) |
SbVec4i32 | operator/ (const SbVec4i32 &v, double d) |
SbVec4i32 | operator+ (const SbVec4i32 &v1, const SbVec4i32 &v2) |
SbVec4i32 | operator- (const SbVec4i32 &v1, const SbVec4i32 &v2) |
int | operator== (const SbVec4i32 &v1, const SbVec4i32 &v2) |
int | operator!= (const SbVec4i32 &v1, const SbVec4i32 &v2) |
std::ostream & | operator<< (std::ostream &os, const SbVec4i32 &v) |
4D vector class.
4D vector class used to store 4D vectors and points. This class is used throughout Open Inventor for arguments and return values.
SbRotation, SbRotationd, SbVec2d, SbVec2f, SbVec2i32, SbVec2s, SbVec3d, SbVec3f, SbVec3i32, SbVec3s, SbVec4b, SbVec4d, SbVec4f, SbVec4s, SbVec4ub, SbVec4ui32, SbVec4us
SbVec4i32::SbVec4i32 | ( | ) | [inline] |
Default constructor.
The vector is not initialized.
SbVec4i32::SbVec4i32 | ( | const int32_t | v[4] | ) | [inline] |
Constructor given an array of 4 components.
SbVec4i32::SbVec4i32 | ( | int32_t | x, | |
int32_t | y, | |||
int32_t | z, | |||
int32_t | w | |||
) | [inline] |
Constructor given 4 individual components.
SbVec4i32::SbVec4i32 | ( | const T & | v | ) | [inline, explicit] |
Constructor that converts an arbitrary SbVec4 to an SbVec4i32.
int32_t SbVec4i32::dot | ( | const SbVec4i32 & | v | ) | const [inline] |
Returns dot (inner) product of vector and another vector.
void SbVec4i32::getValue | ( | int32_t & | x, | |
int32_t & | y, | |||
int32_t & | z, | |||
int32_t & | w | |||
) | const |
Returns 4 individual components.
const int32_t* SbVec4i32::getValue | ( | ) | const [inline] |
Returns pointer to array of 4 components.
void SbVec4i32::negate | ( | ) |
Negates each component of vector in place.
SbVec4i32& SbVec4i32::operator*= | ( | double | d | ) |
Component-wise scalar multiplication operator.
SbVec4i32& SbVec4i32::operator*= | ( | int | d | ) |
Component-wise scalar multiplication operator.
SbVec4i32 SbVec4i32::operator- | ( | ) | const |
Nondestructive unary negation - returns a new vector.
Component-wise vector subtraction operator.
SbVec4i32& SbVec4i32::operator/= | ( | double | d | ) | [inline] |
Component-wise scalar division operator.
SbVec4i32& SbVec4i32::operator/= | ( | int | d | ) |
Component-wise scalar division operator.
const int32_t& SbVec4i32::operator[] | ( | int | i | ) | const [inline] |
Accesses indexed component of vector.
int32_t& SbVec4i32::operator[] | ( | int | i | ) | [inline] |
Accesses indexed component of vector.
SbVec4i32& SbVec4i32::setValue | ( | int32_t | x, | |
int32_t | y, | |||
int32_t | z, | |||
int32_t | w | |||
) |
Sets value of vector from 4 individual components.
SbVec4i32& SbVec4i32::setValue | ( | const int32_t | v[4] | ) |
Sets value of vector from array of 4 components.
Inequality comparison operator.
Component-wise binary scalar multiplication operator.
Component-wise binary scalar multiplication operator.
Component-wise binary scalar multiplication operator.
Component-wise binary scalar multiplication operator.
Component-wise binary vector addition operator.
Component-wise binary vector subtraction operator.
Component-wise binary scalar division operator.
Component-wise binary scalar division operator.
std::ostream& operator<< | ( | std::ostream & | os, | |
const SbVec4i32 & | v | |||
) | [friend] |
Writes the vector to the specified output stream.
Equality comparison operator.