triangle_math.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 ** Harry Storbacka
27 ** Mark Page
28 */
29 
30 #pragma once
31 
32 #include "vec3.h"
33 
34 namespace uicore
35 {
39  template<typename Type>
40  class Trianglex
41  {
42  public:
45 
46  // \brief Second triangle point
48 
49  // \brief Third triangle point
51 
52  Trianglex() : p(), q(), r() {}
53  Trianglex(const Trianglex<Type> &copy) : p(copy.p), q(copy.q), r(copy.r) {}
54  Trianglex(const Vec2<Type> &point_p, const Vec2<Type> &point_q, const Vec2<Type> &point_r) : p(point_p), q(point_q), r(point_r) {}
55 
60  bool point_inside(const Vec2<Type> &point) const;
61 
62  Trianglex<Type> &operator = (const Trianglex<Type>& copy) { p = copy.p; q = copy.q; r = copy.r; return *this; }
63  bool operator == (const Trianglex<Type>& triangle) const { return ((p == triangle.p) && (q == triangle.q) && (r == triangle.r)); }
64  bool operator != (const Trianglex<Type>& triangle) const { return ((p != triangle.p) || (q != triangle.q) || (r != triangle.r)); }
65  };
66 
68  class Triangle : public Trianglex<int>
69  {
70  public:
71  Triangle() { }
72  Triangle(const Trianglex<int> &copy) : Trianglex<int>(copy) {}
73  Triangle(const Vec2<int> &point_p, const Vec2<int> &point_q, const Vec2<int> &point_r) : Trianglex<int>(point_p, point_q, point_r) {}
74  };
75 
77  class Trianglef : public Trianglex<float>
78  {
79  public:
80  Trianglef() { }
81  Trianglef(const Trianglex<float> &copy) : Trianglex<float>(copy) {}
82  Trianglef(const Vec2<float> &point_p, const Vec2<float> &point_q, const Vec2<float> &point_r) : Trianglex<float>(point_p, point_q, point_r) {}
83  };
84 
86  class Triangled : public Trianglex<double>
87  {
88  public:
89  Triangled() { }
90  Triangled(const Trianglex<double> &copy) : Trianglex<double>(copy) {}
91  Triangled(const Vec2<double> &point_p, const Vec2<double> &point_q, const Vec2<double> &point_r) : Trianglex<double>(point_p, point_q, point_r) {}
92  };
93 }
Vec2< Type > r
Definition: triangle_math.h:50
Triangled(const Trianglex< double > &copy)
Definition: triangle_math.h:90
Triangled(const Vec2< double > &point_p, const Vec2< double > &point_q, const Vec2< double > &point_r)
Definition: triangle_math.h:91
2D vector
Definition: line.h:43
Trianglex(const Vec2< Type > &point_p, const Vec2< Type > &point_q, const Vec2< Type > &point_r)
Definition: triangle_math.h:54
Trianglex(const Trianglex< Type > &copy)
Definition: triangle_math.h:53
Trianglex()
Definition: triangle_math.h:52
Vec2< Type > p
First triangle point.
Definition: triangle_math.h:44
bool point_inside(const Vec2< Type > &point) const
Return true if the point is inside the triangle.
Triangle()
Definition: triangle_math.h:71
Triangles - Integer.
Definition: triangle_math.h:68
Triangles - Float.
Definition: triangle_math.h:77
bool operator!=(const Trianglex< Type > &triangle) const
Definition: triangle_math.h:64
Triangle(const Vec2< int > &point_p, const Vec2< int > &point_q, const Vec2< int > &point_r)
Definition: triangle_math.h:73
Trianglef(const Trianglex< float > &copy)
Definition: triangle_math.h:81
Triangled()
Definition: triangle_math.h:89
Triangles.
Definition: triangle_math.h:40
Trianglex< Type > & operator=(const Trianglex< Type > &copy)
Definition: triangle_math.h:62
Trianglef()
Definition: triangle_math.h:80
Triangle(const Trianglex< int > &copy)
Definition: triangle_math.h:72
Triangles - Double.
Definition: triangle_math.h:86
Trianglef(const Vec2< float > &point_p, const Vec2< float > &point_q, const Vec2< float > &point_r)
Definition: triangle_math.h:82
Definition: Application/application.h:35
Vec2< Type > q
Definition: triangle_math.h:47
bool operator==(const Trianglex< Type > &triangle) const
Definition: triangle_math.h:63