2D quad structure. More...
#include <quad.h>
Public Member Functions | |
Quadx () | |
Constructs a quad. More... | |
Quadx (const Vec2< Type > &new_p, const Vec2< Type > &new_q, const Vec2< Type > &new_r, const Vec2< Type > &new_s) | |
Constructs a quad. More... | |
Quadx (const Rectx< Type > &rect) | |
Constructs a quad. More... | |
Quadx (const Quadx< Type > &quad) | |
Constructs a quad. More... | |
Quadx< Type > & | apply_alignment (Origin origin, Type x, Type y) |
Applies an origin and offset pair to this rectangle. More... | |
Rect | bounds () const |
Returns the bounding box of the quad as a Rect. More... | |
Vec2< Type > | center () const |
Returns the center point of the quad. More... | |
Type | height () const |
Returns the height of the quad. More... | |
bool | is_inside (const Vec2< Type > &point) const |
Check if a point is inside or outside the quad. More... | |
bool | operator!= (const Quadx< Type > &quad) const |
Quad != Quad operator. More... | |
Quadx< Type > | operator+ (const Quadx< Type > &quad) const |
Quad + Quad operator. More... | |
Quadx< Type > | operator+ (const Vec2< Type > &point) const |
Quad + Point operator. More... | |
Quadx< Type > & | operator+= (const Quadx< Type > &quad) |
Quad += Quad operator. More... | |
Quadx< Type > & | operator+= (const Vec2< Type > &point) |
Quad += Point operator. More... | |
Quadx< Type > | operator- (const Quadx< Type > &quad) const |
Quad - Quad operator. More... | |
Quadx< Type > | operator- (const Vec2< Type > &point) const |
Quad - Point operator. More... | |
Quadx< Type > & | operator-= (const Quadx< Type > &quad) |
Quad -= Quad operator. More... | |
Quadx< Type > & | operator-= (const Vec2< Type > &point) |
Quad -= Point operator. More... | |
bool | operator== (const Quadx< Type > &quad) const |
Quad == Quad operator. More... | |
Quadx< Type > & | rotate (const Vec2< Type > &hotspot, float angle) |
Rotates the Quad. More... | |
Quadx< Type > & | scale (float sx, float sy) |
Scale the Quad. More... | |
Quadx< Type > & | scale (const Vec2< Type > &hotspot, float sx, float sy) |
Scale the Quad. More... | |
Sizex< Type > | size () const |
Returns the size of the rectangle. More... | |
Type | width () const |
Returns the width of the quad. More... | |
Public Attributes | |
Vec2< Type > | p |
First Point. More... | |
Vec2< Type > | q |
Second Point. More... | |
Vec2< Type > | r |
Third Point. More... | |
Vec2< Type > | s |
Fourth Point. More... | |
2D quad structure.
These quads templates are defined for: int (Quad), float (Quadf), double (Quadd)
|
inline |
Constructs a quad.
Referenced by uicore::Quadx< int >::operator+(), and uicore::Quadx< int >::operator-().
|
inline |
Constructs a quad.
new_p | = coord for first point of quad. |
new_q | = coord for second point of quad. |
new_r | = coord for third point of quad. |
new_s | = coord for forth point of quad. |
|
inline |
Constructs a quad.
rect | Rectangle used to initialize the quad. |
The corners of the rect are mapped to the quad member variables as follows:
|
inline |
Constructs a quad.
quad | = Quad used to initialize this quad. |
Quadx<Type>& uicore::Quadx< Type >::apply_alignment | ( | Origin | origin, |
Type | x, | ||
Type | y | ||
) |
Applies an origin and offset pair to this rectangle.
origin | The new origin to adjust to from default upper-left position |
x,y | Offsets applied negatively to each corner of the rectangle |
Rect uicore::Quadx< Type >::bounds | ( | ) | const |
Returns the bounding box of the quad as a Rect.
Vec2<Type> uicore::Quadx< Type >::center | ( | ) | const |
Returns the center point of the quad.
Type uicore::Quadx< Type >::height | ( | ) | const |
Returns the height of the quad.
Referenced by uicore::Quadx< int >::size().
bool uicore::Quadx< Type >::is_inside | ( | const Vec2< Type > & | point | ) | const |
Check if a point is inside or outside the quad.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Quadx<Type>& uicore::Quadx< Type >::rotate | ( | const Vec2< Type > & | hotspot, |
float | angle | ||
) |
Quadx<Type>& uicore::Quadx< Type >::scale | ( | float | sx, |
float | sy | ||
) |
Scale the Quad.
sx | = Scale value in x-axis |
sy | = Scale value in y-axis |
Quadx<Type>& uicore::Quadx< Type >::scale | ( | const Vec2< Type > & | hotspot, |
float | sx, | ||
float | sy | ||
) |
|
inline |
Returns the size of the rectangle.
Type uicore::Quadx< Type >::width | ( | ) | const |
Returns the width of the quad.
Referenced by uicore::Quadx< int >::size().
Vec2<Type> uicore::Quadx< Type >::p |
Vec2<Type> uicore::Quadx< Type >::q |
Vec2<Type> uicore::Quadx< Type >::r |
Vec2<Type> uicore::Quadx< Type >::s |