26 void QgsEllipse::normalizeAxis()
49 double dist_p1p2 = pt1.
distance( pt2 );
50 double dist_p1p3 = pt1.
distance( pt3 );
51 double dist_p2p3 = pt2.
distance( pt3 );
53 double dist = dist_p1p3 + dist_p2p3;
57 double axis_a = dist / 2.0;
58 double axis_b = std::sqrt( std::pow( axis_a, 2.0 ) - std::pow( dist_p1p2 / 2.0, 2.0 ) );
62 return QgsEllipse( center, axis_a, axis_b, azimuth );
68 double axis_a = std::fabs( pt2.
x() - pt1.
x() ) / 2.0;
69 double axis_b = std::fabs( pt2.
y() - pt1.
y() ) / 2.0;
74 return QgsEllipse( center, axis_a, axis_b, azimuth );
79 double axis_a = std::fabs( pt1.
x() - center.
x() );
80 double axis_b = std::fabs( pt1.
y() - center.
y() );
86 return QgsEllipse( centerPt, axis_a, axis_b, azimuth );
92 double axis_a = center.
distance( pt1 );
96 double axis_b = center.
distance( pp );
101 return QgsEllipse( centerPt, axis_a, axis_b, azimuth );
160 return std::numeric_limits<double>::quiet_NaN();
174 return M_PI * ( 3 * ( a + b ) - std::sqrt( 10 * a * b + 3 * ( a * a + b * b ) ) );
179 QVector<QgsPoint> quad;
203 t.reserve( segments );
205 for (
unsigned int i = 0; i < segments; ++i )
207 t.append( 2 * M_PI - ( ( 2 * M_PI ) / segments * i ) );
210 for ( QVector<double>::const_iterator it = t.constBegin(); it != t.constEnd(); ++it )
218 pts.push_back(
QgsPoint( pType, x, y, z, m ) );
226 std::unique_ptr<QgsPolygon> polygon(
new QgsPolygon() );
229 return polygon.release();
234 return polygon.release();
242 return ext.release();
247 pts.append( pts.at( 0 ) );
249 ext->setPoints( pts );
251 return ext.release();
268 double halfHeight = std::sqrt( ux * ux + uy * uy );
269 double halfWidth = std::sqrt( vx * vx + vy * vy );
281 rep = QStringLiteral(
"Empty" );
283 rep = QStringLiteral(
"Ellipse (Center: %1, Semi-Major Axis: %2, Semi-Minor Axis: %3, Azimuth: %4)" )
294 std::unique_ptr<QgsPolygon> ombb(
new QgsPolygon() );
297 return ombb.release();
310 ombb->setExteriorRing( ext );
312 return ombb.release();
virtual bool operator!=(const QgsEllipse &elp) const
A rectangle specified with double values.
static QgsEllipse fromCenterPoint(const QgsPoint &ptc, const QgsPoint &pt1)
Constructs an ellipse by a center point and a another point.
void setPoints(const QgsPointSequence &points)
Resets the line string to match the specified list of points.
QgsEllipse()=default
Constructor for QgsEllipse.
static double lineAngle(double x1, double y1, double x2, double y2)
Calculates the direction of line joining two points in radians, clockwise from the north direction...
double distance(double x, double y) const
Returns the distance between this point and a specified x, y coordinate.
A class to represent a 2D point.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
QgsPoint center() const
Returns the center point.
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
virtual bool operator==(const QgsEllipse &elp) const
Type
The WKB type describes the number of dimensions a geometry has.
static bool setZValueFromPoints(const QgsPointSequence &points, QgsPoint &point)
A Z dimension is added to point if one of the point in the list points is in 3D.
double azimuth() const
Returns the azimuth.
static QgsEllipse fromExtent(const QgsPoint &pt1, const QgsPoint &pt2)
Constructs an ellipse by an extent (aka bounding box / QgsRectangle).
virtual void setSemiMinorAxis(double semiMinorAxis)
Sets the semi-minor axis.
static QgsEllipse fromFoci(const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3)
Constructs an ellipse by foci (pt1 and pt2) and a point pt3.
static QgsPoint midpoint(const QgsPoint &pt1, const QgsPoint &pt2)
Returns a middle point between points pt1 and pt2.
virtual QgsPolygon * toPolygon(unsigned int segments=36) const
Returns a segmented polygon.
QString qgsDoubleToString(double a, int precision=17)
Returns a string representation of a double.
QString asWkt(int precision=17) const override
Returns a WKT representation of the geometry.
static double normalizedAngle(double angle)
Ensures that an angle is in the range 0 <= angle < 2 pi.
QgsWkbTypes::Type wkbType() const
Returns the WKB type of the geometry.
QgsPoint project(double distance, double azimuth, double inclination=90.0) const
Returns a new point which correspond to this point projected by a specified distance with specified a...
Point geometry type, with support for z-dimension and m-values.
static QgsEllipse fromCenter2Points(const QgsPoint &ptc, const QgsPoint &pt1, const QgsPoint &pt2)
Constructs an ellipse by a central point and two other points.
virtual QVector< QgsPoint > foci() const
Two foci of the ellipse.
virtual void setSemiMajorAxis(double semiMajorAxis)
Sets the semi-major axis.
QVector< QgsPoint > QgsPointSequence
virtual QString toString(int pointPrecision=17, int axisPrecision=17, int azimuthPrecision=2) const
returns a string representation of the ellipse.
virtual bool isEmpty() const
An ellipse is empty if axes are equal to 0.
virtual double area() const
The area of the ellipse.
Line string geometry type, with support for z-dimension and m-values.
static QgsPoint projectPointOnSegment(const QgsPoint &p, const QgsPoint &s1, const QgsPoint &s2)
Project the point on a segment.
void setAzimuth(double azimuth)
Sets the azimuth (orientation).
virtual QgsLineString * toLineString(unsigned int segments=36) const
Returns a segmented linestring.
virtual double focusDistance() const
The distance between the center and each foci.
virtual QVector< QgsPoint > quadrant() const
The four quadrants of the ellipse.
virtual QgsRectangle boundingBox() const
Returns the minimal bounding box for the ellipse.
virtual QgsPolygon * orientedBoundingBox() const
Returns the oriented minimal bounding box for the ellipse.
virtual double perimeter() const
The circumference of the ellipse using first approximation of Ramanujan.
virtual double eccentricity() const
The eccentricity of the ellipse.
virtual QgsPointSequence points(unsigned int segments=36) const
Returns a list of points with segmentation from segments.