Coin
4.0.3
Coin3D core library
|
The SbVec3s class is a 3 dimensional vector with short integer coordinates. More...
#include <Inventor/SbVec3s.h>
Protected Attributes | |
short | vec [3] |
Related Symbols | |
(Note that these are not member symbols.) | |
int | operator!= (const SbVec3s &v1, const SbVec3s &v2) |
SbVec3s | operator* (const SbVec3s &v, double d) |
SbVec3s | operator* (const SbVec3s &v, int d) |
SbVec3s | operator* (double d, const SbVec3s &v) |
SbVec3s | operator* (int d, const SbVec3s &v) |
SbVec3s | operator+ (const SbVec3s &v1, const SbVec3s &v2) |
SbVec3s | operator- (const SbVec3s &v1, const SbVec3s &v2) |
SbVec3s | operator/ (const SbVec3s &v, double d) |
SbVec3s | operator/ (const SbVec3s &v, int d) |
int | operator== (const SbVec3s &v1, const SbVec3s &v2) |
The SbVec3s class is a 3 dimensional vector with short integer coordinates.
This vector class provides storage for a 3 dimensional vector as well as simple integer arithmetic operations.
Be aware that this class is an extension for Coin, and it is not available in the original SGI Open Inventor v2.1 API.
|
inline |
The default constructor does nothing. The vector coordinates will be uninitialized until you do a setValue() call.
|
inline |
Constructs an SbVec3s instance with initial values from v.
|
inline |
Constructs an SbVec3s instance with the initial vector endpoint set to <x,y,z>.
Calculates and returns the result of taking the dot product of this vector and v.
Convert from a string representation, return whether this is a valid conversion
|
inline |
Returns the x, y and z coordinates of the vector.
Returns a pointer to an array of three shorts containing the x, y and z coordinates of the vector.
SbVec3s & SbVec3s::operator*= | ( | double | d | ) |
Multiply components of vector with value d. Returns reference to self.
|
inline |
Multiply components of vector with value d. Returns reference to self.
Adds this vector and vector v. Returns reference to self.
Subtracts vector v from this vector. Returns reference to self.
|
inline |
Divides components of vector with value d. Returns reference to self.
|
inline |
Divides components of vector with value d. Returns reference to self.
|
inline |
Index operator. Returns modifiable x, y or z coordinate of vector.
|
inline |
Index operator. Returns x, y or z coordinate of vector.
Dump the state of this object to the fp file stream. Only works in debug version of library, method does nothing in an optimized build.
Set new coordinates for the vector from v. Returns reference to self.
|
inline |
Set new coordinates for the vector. Returns reference to self.
SbString SbVec3s::toString | ( | ) | const |
Return a string representation of this object
Returns 1 if v1 and v2 are not equal, 0 if they are equal.
Returns an SbVec3s instance which is the components of vector v multiplied with d.
Returns an SbVec3s instance which is the components of vector v multiplied with d.
Returns an SbVec3s instance which is the components of vector v multiplied with d.
Returns an SbVec3s instance which is the components of vector v multiplied with d.
Returns an SbVec3s instance which is the sum of vectors v1 and v2.
Returns an SbVec3s instance which is vector v2 subtracted from vector v1.
Returns an SbVec3s instance which is the components of vector v divided on d.
Returns an SbVec3s instance which is the components of vector v divided on the scalar factor d.
Returns 1 if v1 and v2 are exactly equal, 0 otherwise.