Public Types | |
typedef char | value_type |
enum | { num_components = 2 } |
Public Member Functions | |
Vec2b () | |
Vec2b (char r, char g) | |
bool | operator== (const Vec2b &v) const |
bool | operator!= (const Vec2b &v) const |
bool | operator< (const Vec2b &v) const |
value_type * | ptr () |
const value_type * | ptr () const |
void | set (value_type x, value_type y) |
void | set (const Vec2b &rhs) |
value_type & | operator[] (int i) |
value_type | operator[] (int i) const |
value_type & | x () |
value_type & | y () |
value_type | x () const |
value_type | y () const |
value_type & | r () |
value_type & | g () |
value_type | r () const |
value_type | g () const |
Vec2b | operator * (float rhs) const |
Vec2b & | operator *= (float rhs) |
Vec2b | operator/ (float rhs) const |
Vec2b & | operator/= (float rhs) |
Vec2b | operator+ (const Vec2b &rhs) const |
Vec2b & | operator+= (const Vec2b &rhs) |
Vec2b | operator- (const Vec2b &rhs) const |
Vec2b & | operator-= (const Vec2b &rhs) |
Public Attributes | |
value_type | _v [2] |
|
Type of Vec class. |
|
Number of vector components. |
|
|
|
|
|
|
|
|
|
Multiply by scalar. |
|
Unary multiply by scalar. |
|
|
|
Binary vector add. |
|
Unary vector add. Slightly more efficient because no temporary intermediate object. |
|
Binary vector subtract. |
|
Unary vector subtract. |
|
Divide by scalar. |
|
Unary divide by scalar. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Vec member varaible. |