ear_clip_triangulator.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 */
28 
29 #pragma once
30 
31 #include <memory>
32 #include "../Math/point.h"
33 #include <vector>
34 
35 namespace uicore
36 {
39  {
40  public:
41  float x1, y1, x2, y2, x3, y3;
42  };
43 
44  class EarClipTriangulator_Impl;
45 
48  {
51  };
52 
55  {
56  public:
59 
60  virtual ~EarClipTriangulator();
61 
63  std::vector<Pointf> vertices();
64 
66  int vertice_count();
67 
70 
72  void add_vertex(float x, float y);
73 
77  void add_vertex(const Pointf &p);
78 
80  void clear();
81 
83  void set_orientation(PolygonOrientation orientation);
84 
86  std::vector<EarClipTriangle> triangulate();
87 
89  void begin_hole();
90 
92  void end_hole();
93 
94  private:
95  std::shared_ptr<EarClipTriangulator_Impl> impl;
96  };
97 }
PolygonOrientation
Polygon orientations.
Definition: ear_clip_triangulator.h:47
float x2
Definition: ear_clip_triangulator.h:41
2D (x,y) point structure - Float
Definition: point.h:68
void begin_hole()
Mark beginning of a polygon hole.
EarClipTriangulator()
Constructs a triangulator.
float y1
Definition: ear_clip_triangulator.h:41
float y2
Definition: ear_clip_triangulator.h:41
void clear()
Remove all vertices from triangulator.
Triangle returned by triangulator.
Definition: ear_clip_triangulator.h:38
Definition: ear_clip_triangulator.h:50
void end_hole()
Mark ending of a polygon hole.
void set_orientation(PolygonOrientation orientation)
Set polygon orientation.
PolygonOrientation calculate_polygon_orientation()
Determine the orientation of the vertices in the triangulator.
float y3
Definition: ear_clip_triangulator.h:41
float x3
Definition: ear_clip_triangulator.h:41
Definition: ear_clip_triangulator.h:49
std::vector< Pointf > vertices()
Returns a list of the vertices added to the triangulator.
float x1
Definition: ear_clip_triangulator.h:41
int vertice_count()
Returns the number of vertices in the triangulator.
std::vector< EarClipTriangle > triangulate()
Perform triangulation.
Ear-clipping triangulator.
Definition: ear_clip_triangulator.h:54
void add_vertex(float x, float y)
Add the next vertex of the polygon to the triangulator.
Definition: Application/application.h:35