Darwin Neuroevolution Framework
outline_2d.h
1 // Copyright 2019 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <core/math_2d.h>
18 
19 #include <vector>
20 using namespace std;
21 
22 namespace math {
23 
25 using Polygon = vector<Vector2d>;
26 
28 class Outline {
29  public:
30  struct Node {
31  Vector2d p;
32  Vector2d n;
33 
35  Vector2d offset(double offset) const { return p + n * offset; }
36  };
37 
38  public:
40  Outline() = default;
41 
43  explicit Outline(const Polygon& control_points, int resolution);
44 
46  const vector<Node>& nodes() const { return nodes_; }
47 
49  Outline offset(double offset) const;
50 
52  Outline makeEquidistant() const;
53 
55  Polygon toPolygon() const;
56 
59  const Node& findClosestNode(const Vector2d& pos) const;
60 
62  void clear() { nodes_.clear(); }
63 
65  bool empty() const { return nodes_.empty(); }
66 
67  private:
68  void createNodes(const Polygon& polygon);
69 
70  private:
71  vector<Node> nodes_;
72 };
73 
74 } // namespace math
A basic 2D vector.
Definition: math_2d.h:49
const vector< Node > & nodes() const
Returns the outline nodes.
Definition: outline_2d.h:46
bool empty() const
Returns true if the outline is empty.
Definition: outline_2d.h:65
STL namespace.
void clear()
Clears the outline.
Definition: outline_2d.h:62
vector< Vector2d > Polygon
A list of 2d points.
Definition: outline_2d.h:25
Numerical types and helpers.
Definition: math_2d.cpp:17
A spline aproximation.
Definition: outline_2d.h:28