Public Member Functions |
| Size2D () |
| Size2D (const Tuple< 2, T > &other) |
| Size2D (T init) |
| Size2D (T _width, T _height) |
T & | width () |
const T & | width () const |
T & | height () |
const T & | height () const |
T | area () const |
| Returns the area of the size (width * height).
|
| Tuple () |
| Tuple (T init) |
| Initialize every element of the tuple to a single value.
|
bool | operator== (const Tuple< N, T > &rhs) const |
| Returns true when every element in the two tuples are identical.
|
bool | operator!= (const Tuple< N, T > &rhs) const |
| Returns true if there are any differences between the two tuples.
|
Tuple< N, T > & | operator+= (const Tuple< N, T > &rhs) |
| Adds every element of another tuple to the elements of this tuple.
|
Tuple< N, T > & | operator-= (const Tuple< N, T > &rhs) |
| Subtracts every element of another tuple from the elements of this tuple.
|
Tuple< N, T > & | operator*= (const T &rhs) |
| Multiplies every element in the tuple by a single value.
|
Tuple< N, T > & | operator/= (const T &rhs) |
| Divides every element in the tuple by a single value.
|
const Tuple< N, T > | operator+ (const Tuple< N, T > &rhs) const |
| Returns the result of adding another tuple to this tuple.
|
const Tuple< N, T > | operator- (const Tuple< N, T > &rhs) const |
| Returns the result of subtracting another tuple from this tuple.
|
const Tuple< N, T > | operator* (const T &rhs) const |
| Returns the result of multiplying this tuple by a single value.
|
const Tuple< N, T > | operator/ (const T &rhs) const |
| Returns the result of dividing this tuple by a single value.
|
T & | operator[] (unsigned int i) |
const T & | operator[] (unsigned int i) const |
template<typename T>
class Argus::Size2D< T >
Size2D template class.
This is a Tuple specialization containing 2 elements corresponding to the width and height of a 2D size, in that order. Values can be accessed using the named methods.
Definition at line 665 of file Types.h.