line_segment.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 ** Mark Page
27 */
28 
29 #pragma once
30 
31 namespace uicore
32 {
33  template<typename Type>
35 
36  template<typename Type>
38 
39  template<typename Type>
40  class Vec2;
41 
42  template<typename Type>
43  class Vec3;
44 
45  template<typename Type>
46  class Rectx;
47 
52  template<typename Type>
53  class LineSegment3x
54  {
55  public:
58 
59  // \brief End point on the line
61 
62  LineSegment3x() : p(), q() {}
63  LineSegment3x(const LineSegment3x<Type> &copy) : p(copy.p), q(copy.q) {}
64  LineSegment3x(const Vec3<Type> &point_p, const Vec3<Type> &point_q) : p(point_p), q(point_q) {}
65 
69  Vec3<Type> midpoint() const { return Vec3<Type>((q.x + p.x) / ((Type)2), (q.y + p.y) / ((Type)2), (q.z + p.z) / ((Type)2)); };
70 
76  Type point_distance(const Vec3<Type> &point, Vec3<Type> &dest_intercept) const;
77 
79  LineSegment3x<Type> &operator = (const LineSegment3x<Type>& copy) { p = copy.p; q = copy.q; return *this; }
80 
82  bool operator == (const LineSegment3x<Type>& line) const { return ((p == line.p) && (q == line.q)); }
83 
85  bool operator != (const LineSegment3x<Type>& line) const { return ((p != line.p) || (q != line.q)); }
86  };
87 
92  template<typename Type>
93  class LineSegment2x
94  {
95  public:
98 
99  // \brief End point on the line
101 
102  LineSegment2x() : p(), q() {}
103  LineSegment2x(const LineSegment2x<Type> &copy) : p(copy.p), q(copy.q) {}
104  LineSegment2x(const Vec2<Type> &point_p, const Vec2<Type> &point_q) : p(point_p), q(point_q) {}
105 
109  Vec2<Type> midpoint() const { return Vec2<Type>((q.x + p.x) / ((Type)2), (q.y + p.y) / ((Type)2)); };
110 
114  Type point_distance(const Vec2<Type> &point);
115 
120  bool collinear(const LineSegment2x<Type> &second) const;
121 
127  bool intersects(const LineSegment2x<Type> &second, bool collinear_intersect) const;
128 
134  Vec2<Type> intersection(const LineSegment2x<Type> &second, bool &intersect) const;
135 
140  Type point_right_of_line(const Vec2<Type> &point) const { return (q.x - p.x) * (point.y - p.y) - (point.x - p.x) * (q.y - p.y); }
141 
147  Vec2<Type> normal() const;
148 
156  LineSegment2x<Type> &clip(const Rectx<Type> &rect, bool &clipped);
157 
159  LineSegment2x<Type> &operator = (const LineSegment2x<Type>& copy) { p = copy.p; q = copy.q; return *this; }
160 
162  bool operator == (const LineSegment2x<Type>& line) const { return ((p == line.p) && (q == line.q)); }
163 
165  bool operator != (const LineSegment2x<Type>& line) const { return ((p != line.p) || (q != line.q)); }
166  };
167 
171  class LineSegment2 : public LineSegment2x<int>
172  {
173  public:
175  LineSegment2(const LineSegment2x<int> &copy) : LineSegment2x<int>(copy) {}
176  LineSegment2(const Vec2<int> &point_p, const Vec2<int> &point_q) : LineSegment2x<int>(point_p, point_q) {}
177  };
178 
182  class LineSegment2f : public LineSegment2x<float>
183  {
184  public:
185  LineSegment2f() : LineSegment2x<float>() {}
186  LineSegment2f(const LineSegment2x<float> &copy) : LineSegment2x<float>(copy) {}
187  LineSegment2f(const Vec2<float> &point_p, const Vec2<float> &point_q) : LineSegment2x<float>(point_p, point_q) {}
188  };
189 
193  class LineSegment2d : public LineSegment2x<double>
194  {
195  public:
196  LineSegment2d() : LineSegment2x<double>() {}
197  LineSegment2d(const LineSegment2x<double> &copy) : LineSegment2x<double>(copy) {}
198  LineSegment2d(const Vec2<double> &point_p, const Vec2<double> &point_q) : LineSegment2x<double>(point_p, point_q) {}
199  };
200 
204  class LineSegment3 : public LineSegment3x<int>
205  {
206  public:
208  LineSegment3(const LineSegment3x<int> &copy) : LineSegment3x<int>(copy) {}
209  LineSegment3(const Vec3<int> &point_p, const Vec3<int> &point_q) : LineSegment3x<int>(point_p, point_q) {}
210  };
211 
215  class LineSegment3f : public LineSegment3x<float>
216  {
217  public:
218  LineSegment3f() : LineSegment3x<float>() {}
219  LineSegment3f(const LineSegment3x<float> &copy) : LineSegment3x<float>(copy) {}
220  LineSegment3f(const Vec3<float> &point_p, const Vec3<float> &point_q) : LineSegment3x<float>(point_p, point_q) {}
221  };
222 
226  class LineSegment3d : public LineSegment3x<double>
227  {
228  public:
229  LineSegment3d() : LineSegment3x<double>() {}
230  LineSegment3d(const LineSegment3x<double> &copy) : LineSegment3x<double>(copy) {}
231  LineSegment3d(const Vec3<double> &point_p, const Vec3<double> &point_q) : LineSegment3x<double>(point_p, point_q) {}
232  };
233 }
LineSegment3x(const LineSegment3x< Type > &copy)
Definition: line_segment.h:63
Vec2< Type > q
Definition: line_segment.h:100
LineSegment3d(const LineSegment3x< double > &copy)
Definition: line_segment.h:230
LineSegment2d(const Vec2< double > &point_p, const Vec2< double > &point_q)
Definition: line_segment.h:198
LineSegment3(const Vec3< int > &point_p, const Vec3< int > &point_q)
Definition: line_segment.h:209
3D line segment - Float
Definition: line_segment.h:215
2D vector
Definition: line.h:43
LineSegment3f(const Vec3< float > &point_p, const Vec3< float > &point_q)
Definition: line_segment.h:220
LineSegment2f()
Definition: line_segment.h:185
Type x
Definition: vec3.h:74
3D line segment - Integer
Definition: line_segment.h:204
bool operator!=(const LineSegment2x< Type > &line) const
!= operator.
Definition: line_segment.h:165
LineSegment2x< Type > & operator=(const LineSegment2x< Type > &copy)
= operator.
Definition: line_segment.h:159
LineSegment2f(const LineSegment2x< float > &copy)
Definition: line_segment.h:186
3D vector
Definition: line_ray.h:43
LineSegment2x(const LineSegment2x< Type > &copy)
Definition: line_segment.h:103
LineSegment3d(const Vec3< double > &point_p, const Vec3< double > &point_q)
Definition: line_segment.h:231
Vec3< Type > q
Definition: line_segment.h:60
LineSegment3(const LineSegment3x< int > &copy)
Definition: line_segment.h:208
Vec2< Type > midpoint() const
Get the midpoint of this line.
Definition: line_segment.h:109
2D line segment - Double
Definition: line_segment.h:193
LineSegment3f(const LineSegment3x< float > &copy)
Definition: line_segment.h:219
Type x
Definition: vec2.h:75
Type point_right_of_line(const Vec2< Type > &point) const
Return [<0, 0, >0] if the Point P is right, on or left of the line trough A,B.
Definition: line_segment.h:140
LineSegment2d()
Definition: line_segment.h:196
Vec2< Type > normal() const
Return the normal vector of the line from point A to point B.
Type point_distance(const Vec3< Type > &point, Vec3< Type > &dest_intercept) const
Calculate the distance from a line segment to a point.
Vec2< Type > intersection(const LineSegment2x< Type > &second, bool &intersect) const
Return the intersection point of two lines.
LineSegment2()
Definition: line_segment.h:174
LineSegment3()
Definition: line_segment.h:207
LineSegment2(const LineSegment2x< int > &copy)
Definition: line_segment.h:175
bool intersects(const LineSegment2x< Type > &second, bool collinear_intersect) const
Return true if two line segments intersect.
LineSegment2x()
Definition: line_segment.h:102
2D line segment - Integer
Definition: line_segment.h:171
Type z
Definition: vec3.h:76
LineSegment2x(const Vec2< Type > &point_p, const Vec2< Type > &point_q)
Definition: line_segment.h:104
Vec3< Type > p
Start point on the line.
Definition: line_segment.h:57
Type y
Definition: vec2.h:76
LineSegment3f()
Definition: line_segment.h:218
LineSegment2(const Vec2< int > &point_p, const Vec2< int > &point_q)
Definition: line_segment.h:176
2D line segment
Definition: line_segment.h:34
LineSegment3x()
Definition: line_segment.h:62
2D (left,top,right,bottom) rectangle structure.
Definition: line.h:40
bool operator==(const LineSegment3x< Type > &line) const
== operator.
Definition: line_segment.h:82
Vec3< Type > midpoint() const
Get the midpoint of this line.
Definition: line_segment.h:69
LineSegment3d()
Definition: line_segment.h:229
2D line segment - Float
Definition: line_segment.h:182
3D line segment - Double
Definition: line_segment.h:226
LineSegment2x< Type > & clip(const Rectx< Type > &rect, bool &clipped)
Clip this line to a rectangle.
Type point_distance(const Vec2< Type > &point)
Return the distance from a point to a line.
LineSegment3x< Type > & operator=(const LineSegment3x< Type > &copy)
= operator.
Definition: line_segment.h:79
LineSegment3x(const Vec3< Type > &point_p, const Vec3< Type > &point_q)
Definition: line_segment.h:64
Type y
Definition: vec3.h:75
bool collinear(const LineSegment2x< Type > &second) const
Return true if two line segments are collinear. (All points are on the same line.) ...
Vec2< Type > p
Start point on the line.
Definition: line_segment.h:97
LineSegment2d(const LineSegment2x< double > &copy)
Definition: line_segment.h:197
bool operator==(const LineSegment2x< Type > &line) const
== operator.
Definition: line_segment.h:162
LineSegment2f(const Vec2< float > &point_p, const Vec2< float > &point_q)
Definition: line_segment.h:187
Definition: Application/application.h:35
bool operator!=(const LineSegment3x< Type > &line) const
!= operator.
Definition: line_segment.h:85
3D line segment
Definition: line_segment.h:37