17 #include <core/math_2d.h> 35 Vector2d offset(
double offset)
const {
return p + n * offset; }
46 const vector<Node>&
nodes()
const {
return nodes_; }
49 Outline offset(
double offset)
const;
52 Outline makeEquidistant()
const;
59 const Node& findClosestNode(
const Vector2d& pos)
const;
62 void clear() { nodes_.clear(); }
65 bool empty()
const {
return nodes_.empty(); }
68 void createNodes(
const Polygon& polygon);
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
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