quad.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 ** Mark Page
28 */
29 
30 #pragma once
31 
32 #include "rect.h"
33 #include "size.h"
34 #include "point.h"
35 #include "origin.h"
36 
37 namespace uicore
38 {
43  template<typename Type>
44  class Quadx
45  {
46  public:
48  Quadx() : p(), q(), r(), s() {}
49 
56  Quadx(const Vec2<Type> &new_p, const Vec2<Type> &new_q, const Vec2<Type> &new_r, const Vec2<Type> &new_s)
57  : p(new_p), q(new_q), r(new_r), s(new_s) {}
58 
70  Quadx(const Rectx<Type> &rect) : p(rect.left, rect.top), q(rect.right, rect.top),
71  r(rect.right, rect.bottom), s(rect.left, rect.bottom) {}
72 
76  Quadx(const Quadx<Type> &quad) : p(quad.p), q(quad.q), r(quad.r), s(quad.s) {}
77 
80  {
81  p += quad.p; q += quad.q; r += quad.r; s += quad.s; return *this;
82  }
83 
86  {
87  p -= quad.p; q -= quad.q; r -= quad.r; s -= quad.s; return *this;
88  }
89 
92  {
93  p += point; q += point; r += point; s += point; return *this;
94  }
95 
98  {
99  p -= point; q -= point; r -= point; s -= point; return *this;
100  }
101 
103  Quadx<Type> operator+(const Quadx<Type> &quad) const
104  {
105  return Quadx(p + quad.p, q + quad.q, r + quad.r, s + quad.s);
106  }
107 
109  Quadx<Type> operator-(const Quadx<Type> &quad) const
110  {
111  return Quadx(p - quad.p, q - quad.q, r - quad.r, s - quad.s);
112  }
113 
115  Quadx<Type> operator+(const Vec2<Type> &point) const
116  {
117  return Quadx(p + point, q + point, r + point, s + point);
118  }
119 
121  Quadx<Type> operator-(const Vec2<Type> &point) const
122  {
123  return Quadx(p - point, q - point, r - point, s - point);
124  }
125 
127  bool operator==(const Quadx<Type> &quad) const
128  {
129  return (p == quad.p && q == quad.q && r == quad.r && s == quad.s);
130  }
131 
133  bool operator!=(const Quadx<Type> &quad) const
134  {
135  return (p != quad.p || q != quad.q || r != quad.r || s != quad.s);
136  }
137 
140 
143 
146 
149 
151  Type width() const;
152 
154  Type height() const;
155 
157  Sizex<Type> size() const { return Sizex<Type>(width(), height()); }
158 
160  Rect bounds() const;
161 
168  Quadx<Type> &rotate(const Vec2<Type> &hotspot, float angle);
169 
176  Quadx<Type> &scale(float sx, float sy);
177 
185  Quadx<Type> &scale(const Vec2<Type> &hotspot, float sx, float sy);
186 
188  Vec2<Type> center() const;
189 
196  Quadx<Type> &apply_alignment(Origin origin, Type x, Type y);
197 
199  bool is_inside(const Vec2<Type> &point) const;
200  };
201 
203  class Quad : public Quadx<int>
204  {
205  public:
206  Quad() : Quadx<int>() {}
207  Quad(const Vec2<int> &new_p, const Vec2<int> &new_q, const Vec2<int> &new_r, const Vec2<int> &new_s) : Quadx<int>(new_p, new_q, new_r, new_s) {}
208  Quad(const Rect &rect) : Quadx<int>(rect) {}
209  Quad(const Quadx<int> &quad) : Quadx<int>(quad) {}
210  };
211 
213  class Quadf : public Quadx<float>
214  {
215  public:
216  Quadf() : Quadx<float>() {}
217  Quadf(const Vec2<float> &new_p, const Vec2<float> &new_q, const Vec2<float> &new_r, const Vec2<float> &new_s) : Quadx<float>(new_p, new_q, new_r, new_s) {}
218  Quadf(const Rectf &rect) : Quadx<float>(rect) {}
219  Quadf(const Quadx<float> &quad) : Quadx<float>(quad) {}
220  };
221 
223  class Quadd : public Quadx<double>
224  {
225  public:
226  Quadd() : Quadx<double>() {}
227  Quadd(const Vec2<double> &new_p, const Vec2<double> &new_q, const Vec2<double> &new_r, const Vec2<double> &new_s) : Quadx<double>(new_p, new_q, new_r, new_s) {}
228  Quadd(const Rectd &rect) : Quadx<double>(rect) {}
229  Quadd(const Quadx<double> &quad) : Quadx<double>(quad) {}
230  };
231 }
Quadx< Type > & operator+=(const Vec2< Type > &point)
Quad += Point operator.
Definition: quad.h:91
bool operator!=(const Quadx< Type > &quad) const
Quad != Quad operator.
Definition: quad.h:133
Quadx< Type > & operator+=(const Quadx< Type > &quad)
Quad += Quad operator.
Definition: quad.h:79
Quadd(const Quadx< double > &quad)
Definition: quad.h:229
Rect bounds() const
Returns the bounding box of the quad as a Rect.
Quad(const Vec2< int > &new_p, const Vec2< int > &new_q, const Vec2< int > &new_r, const Vec2< int > &new_s)
Definition: quad.h:207
Quadf(const Quadx< float > &quad)
Definition: quad.h:219
Quadd()
Definition: quad.h:226
2D vector
Definition: line.h:43
2D (width,height) size structure.
Definition: size.h:51
Vec2< Type > p
First Point.
Definition: quad.h:139
Quadf(const Rectf &rect)
Definition: quad.h:218
2D (left,top,right,bottom) rectangle structure - Double
Definition: rect.h:520
2D quad structure - Double
Definition: quad.h:223
Quadx< Type > & apply_alignment(Origin origin, Type x, Type y)
Applies an origin and offset pair to this rectangle.
Quadf(const Vec2< float > &new_p, const Vec2< float > &new_q, const Vec2< float > &new_r, const Vec2< float > &new_s)
Definition: quad.h:217
Quadd(const Vec2< double > &new_p, const Vec2< double > &new_q, const Vec2< double > &new_r, const Vec2< double > &new_s)
Definition: quad.h:227
2D quad structure - Integer
Definition: quad.h:203
Quadx(const Rectx< Type > &rect)
Constructs a quad.
Definition: quad.h:70
Quadd(const Rectd &rect)
Definition: quad.h:228
Vec2< Type > center() const
Returns the center point of the quad.
Vec2< Type > q
Second Point.
Definition: quad.h:142
Quadx(const Quadx< Type > &quad)
Constructs a quad.
Definition: quad.h:76
Quad(const Rect &rect)
Definition: quad.h:208
Quadx< Type > & operator-=(const Quadx< Type > &quad)
Quad -= Quad operator.
Definition: quad.h:85
Vec2< Type > s
Fourth Point.
Definition: quad.h:148
Quadx< Type > operator+(const Vec2< Type > &point) const
Quad + Point operator.
Definition: quad.h:115
Quad(const Quadx< int > &quad)
Definition: quad.h:209
Quadx< Type > operator+(const Quadx< Type > &quad) const
Quad + Quad operator.
Definition: quad.h:103
Type width() const
Returns the width of the quad.
2D (left,top,right,bottom) rectangle structure.
Definition: line.h:40
2D quad structure.
Definition: quad.h:44
bool operator==(const Quadx< Type > &quad) const
Quad == Quad operator.
Definition: quad.h:127
2D (left,top,right,bottom) rectangle structure - Float
Definition: rect.h:505
2D quad structure - Float
Definition: quad.h:213
Quad()
Definition: quad.h:206
2D (left,top,right,bottom) rectangle structure - Integer
Definition: rect.h:491
Quadx< Type > & scale(float sx, float sy)
Scale the Quad.
Vec2< Type > r
Third Point.
Definition: quad.h:145
Quadx< Type > & operator-=(const Vec2< Type > &point)
Quad -= Point operator.
Definition: quad.h:97
Quadx()
Constructs a quad.
Definition: quad.h:48
Quadx(const Vec2< Type > &new_p, const Vec2< Type > &new_q, const Vec2< Type > &new_r, const Vec2< Type > &new_s)
Constructs a quad.
Definition: quad.h:56
bool is_inside(const Vec2< Type > &point) const
Check if a point is inside or outside the quad.
Quadx< Type > operator-(const Vec2< Type > &point) const
Quad - Point operator.
Definition: quad.h:121
Origin
Alignment origins.
Definition: origin.h:35
Type height() const
Returns the height of the quad.
Definition: Application/application.h:35
Quadx< Type > operator-(const Quadx< Type > &quad) const
Quad - Quad operator.
Definition: quad.h:109
Sizex< Type > size() const
Returns the size of the rectangle.
Definition: quad.h:157
Quadf()
Definition: quad.h:216
Quadx< Type > & rotate(const Vec2< Type > &hotspot, float angle)
Rotates the Quad.