pointset_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 ** Emanuel Griesen
27 ** Harry Storbacka
28 */
29 
30 #pragma once
31 
32 #include <vector>
33 #include "point.h"
34 #include "circle.h"
35 #include "rect.h"
36 
37 namespace uicore
38 {
41  {
42  public:
47  const std::vector<Pointf> &points);
48 
52  static std::vector<Pointf> convex_hull_from_polygon(std::vector<Pointf> &points);
53 
54  static Rect bounding_box(const std::vector<Pointf> &points);
55 
56  private:
57  static void calculate_minimum_enclosing_disc(
58  Circlef &smalldisc,
59  const std::vector<Pointf> &points,
60  int start,
61  int end);
62 
63  static void minimum_disc_with_1point(
64  Circlef &smalldisc,
65  const std::vector<Pointf> &points,
66  int start,
67  unsigned int i);
68 
69  static void minimum_disc_with_2points(
70  Circlef &smalldisc,
71  const std::vector<Pointf> &points,
72  int start,
73  unsigned int i,
74  unsigned int j);
75 
76  static void minimum_disc_with_3points(
77  Circlef &smalldisc,
78  const std::vector<Pointf> &points,
79  unsigned int i,
80  unsigned int j,
81  unsigned int k);
82 
83  friend class OutlineMath;
84  };
85 }
static Rect bounding_box(const std::vector< Pointf > &points)
2D (left,top,right,bottom) rectangle structure - Integer
Definition: rect.h:491
static std::vector< Pointf > convex_hull_from_polygon(std::vector< Pointf > &points)
Return the convex hull of the given set of points.
Circle - Float.
Definition: circle.h:72
friend class OutlineMath
Definition: pointset_math.h:83
Definition: Application/application.h:35
static Circlef minimum_enclosing_disc(const std::vector< Pointf > &points)
Find minimum spanning circle for the set of points.
Math operations related to point sets.
Definition: pointset_math.h:40