File size: 5,076 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | // SPDX-License-Identifier: BSD-3-Clause
// Curve.h
/*==============================
Copyright (c) 2011-2015 Dan Heeks
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
==============================*/
#pragma once
#include <vector>
#include <list>
#include <cmath>
#include "Point.h"
#include "Box2D.h"
class Line
{
public:
Point p0;
Point v;
// constructors
Line(const Point& P0, const Point& V);
double Dist(const Point& p) const;
};
class CArc;
class CVertex
{
public:
int m_type; // 0 - line ( or start point ), 1 - anti-clockwise arc, -1 - clockwise arc
Point m_p; // end point
Point m_c; // centre point in absolute coordinates
int m_user_data;
CVertex()
: m_type(0)
, m_p(Point(0, 0))
, m_c(Point(0, 0))
, m_user_data(0)
{}
CVertex(int type, const Point& p, const Point& c, int user_data = 0);
CVertex(const Point& p, int user_data = 0);
};
class Span
{
Point NearestPointNotOnSpan(const Point& p) const;
double Parameter(const Point& p) const;
Point NearestPointToSpan(const Span& p, double& d) const;
static const Point null_point;
static const CVertex null_vertex;
public:
bool m_start_span;
Point m_p;
CVertex m_v;
Span();
Span(const Point& p, const CVertex& v, bool start_span = false)
: m_start_span(start_span)
, m_p(p)
, m_v(v)
{}
Point NearestPoint(const Point& p) const;
Point NearestPoint(const Span& p, double* d = NULL) const;
void GetBox(CBox2D& box);
double IncludedAngle() const;
double GetArea() const;
bool On(const Point& p, double* t = NULL) const;
Point MidPerim(double d) const;
Point MidParam(double param) const;
double Length() const;
Point GetVector(double fraction) const;
void Intersect(
const Span& s,
std::list<Point>& pts
) const; // finds all the intersection points between two spans
};
class CCurve
{
// a closed curve, please make sure you add an end point, the same as the start point
protected:
void AddArcOrLines(
bool check_for_arc,
std::list<CVertex>& new_vertices,
std::list<const CVertex*>& might_be_an_arc,
CArc& arc,
bool& arc_found,
bool& arc_added
);
static bool CheckForArc(const CVertex& prev_vt, std::list<const CVertex*>& might_be_an_arc, CArc& arc);
public:
std::list<CVertex> m_vertices;
void append(const CVertex& vertex);
void FitArcs(bool retry = false);
void UnFitArcs();
Point NearestPoint(const Point& p) const;
Point NearestPoint(const CCurve& p, double* d = NULL) const;
Point NearestPoint(const Span& p, double* d = NULL) const;
void GetBox(CBox2D& box);
void Reverse();
double GetArea() const;
bool IsClockwise() const
{
return GetArea() > 0;
}
bool IsClosed() const;
void ChangeStart(const Point& p);
void ChangeEnd(const Point& p);
bool Offset(double leftwards_value);
void OffsetForward(
double forwards_value,
bool refit_arcs = true
); // for drag-knife compensation
void Break(const Point& p);
void ExtractSeparateCurves(
const std::list<Point>& ordered_points,
std::list<CCurve>& separate_curves
) const;
double Perim() const;
Point PerimToPoint(double perim) const;
double PointToPerim(const Point& p) const;
void GetSpans(std::list<Span>& spans) const;
void RemoveTinySpans();
void operator+=(const CCurve& p);
void SpanIntersections(const Span& s, std::list<Point>& pts) const;
void CurveIntersections(const CCurve& c, std::list<Point>& pts) const;
};
void tangential_arc(const Point& p0, const Point& p1, const Point& v0, Point& c, int& dir);
|