Public Types | |
| typedef short | value_type |
| Type of Vec class. | |
| num_components = 3 | |
| enum | { num_components = 3 } |
| Number of vector components. More... | |
Public Member Functions | |
| Vec3s () | |
| Vec3s (value_type r, value_type g, value_type b) | |
| bool | operator== (const Vec3s &v) const |
| bool | operator!= (const Vec3s &v) const |
| bool | operator< (const Vec3s &v) const |
| value_type * | ptr () |
| const value_type * | ptr () const |
| void | set (value_type r, value_type g, value_type b) |
| void | set (const Vec3s &rhs) |
| value_type & | operator[] (unsigned int i) |
| value_type | operator[] (unsigned int i) const |
| value_type & | x () |
| value_type & | y () |
| value_type & | z () |
| value_type | x () const |
| value_type | y () const |
| value_type | z () const |
| value_type & | r () |
| value_type & | g () |
| value_type & | b () |
| value_type | r () const |
| value_type | g () const |
| value_type | b () const |
| Vec3s | operator * (value_type rhs) const |
| Multiply by scalar. | |
| Vec3s & | operator *= (value_type rhs) |
| Unary multiply by scalar. | |
| Vec3s | operator/ (value_type rhs) const |
| Divide by scalar. | |
| Vec3s & | operator/= (value_type rhs) |
| Unary divide by scalar. | |
| Vec3s | operator * (const Vec3s &rhs) const |
| Binary vector multiply. | |
| Vec3s & | operator *= (const Vec3s &rhs) |
| Unary vector multiply. | |
| Vec3s | operator+ (const Vec3s &rhs) const |
| Binary vector add. | |
| Vec3s & | operator+= (const Vec3s &rhs) |
| Unary vector add. | |
| Vec3s | operator- (const Vec3s &rhs) const |
| Binary vector substract. | |
| Vec3s & | operator-= (const Vec3s &rhs) |
| Unary vector subtract. | |
| Vec3s | operator- () const |
| Negation operator. | |
Public Attributes | |
| value_type | _v [3] |
| typedef short osg::Vec3s::value_type |
Type of Vec class.
| osg::Vec3s::Vec3s | ( | ) | [inline] |
| osg::Vec3s::Vec3s | ( | value_type | r, | |
| value_type | g, | |||
| value_type | b | |||
| ) | [inline] |
| value_type osg::Vec3s::b | ( | ) | const [inline] |
| value_type& osg::Vec3s::b | ( | ) | [inline] |
| value_type osg::Vec3s::g | ( | ) | const [inline] |
| value_type& osg::Vec3s::g | ( | ) | [inline] |
| Vec3s osg::Vec3s::operator * | ( | value_type | rhs | ) | const [inline] |
Multiply by scalar.
Unary vector multiply.
Slightly more efficient because no temporary intermediate object.
| Vec3s& osg::Vec3s::operator *= | ( | value_type | rhs | ) | [inline] |
Unary multiply by scalar.
| bool osg::Vec3s::operator!= | ( | const Vec3s & | v | ) | const [inline] |
Unary vector add.
Slightly more efficient because no temporary intermediate object.
| Vec3s osg::Vec3s::operator- | ( | ) | const [inline] |
Negation operator.
Returns the negative of the Vec3s.
| Vec3s osg::Vec3s::operator/ | ( | value_type | rhs | ) | const [inline] |
Divide by scalar.
| Vec3s& osg::Vec3s::operator/= | ( | value_type | rhs | ) | [inline] |
Unary divide by scalar.
| bool osg::Vec3s::operator< | ( | const Vec3s & | v | ) | const [inline] |
| bool osg::Vec3s::operator== | ( | const Vec3s & | v | ) | const [inline] |
| value_type osg::Vec3s::operator[] | ( | unsigned int | i | ) | const [inline] |
| value_type& osg::Vec3s::operator[] | ( | unsigned int | i | ) | [inline] |
| const value_type* osg::Vec3s::ptr | ( | ) | const [inline] |
| value_type* osg::Vec3s::ptr | ( | ) | [inline] |
| value_type osg::Vec3s::r | ( | ) | const [inline] |
| value_type& osg::Vec3s::r | ( | ) | [inline] |
| void osg::Vec3s::set | ( | const Vec3s & | rhs | ) | [inline] |
| void osg::Vec3s::set | ( | value_type | r, | |
| value_type | g, | |||
| value_type | b | |||
| ) | [inline] |
| value_type osg::Vec3s::x | ( | ) | const [inline] |
| value_type& osg::Vec3s::x | ( | ) | [inline] |
| value_type osg::Vec3s::y | ( | ) | const [inline] |
| value_type& osg::Vec3s::y | ( | ) | [inline] |
| value_type osg::Vec3s::z | ( | ) | const [inline] |
| value_type& osg::Vec3s::z | ( | ) | [inline] |