18 #ifndef QGSRECTANGLE_H 19 #define QGSRECTANGLE_H 21 #include "qgis_core.h" 24 #include <QDomDocument> 49 explicit QgsRectangle(
double xMin,
double yMin = 0,
double xMax = 0,
double yMax = 0 )
67 mXmin = qRectF.topLeft().x();
68 mYmin = qRectF.topLeft().y();
69 mXmax = qRectF.bottomRight().x();
70 mYmax = qRectF.bottomRight().y();
118 void set(
double xMin,
double yMin,
double xMax,
double yMax )
153 mXmin = std::numeric_limits<double>::max();
154 mYmin = std::numeric_limits<double>::max();
155 mXmax = -std::numeric_limits<double>::max();
156 mYmax = -std::numeric_limits<double>::max();
189 std::swap( mXmin, mXmax );
193 std::swap( mYmin, mYmax );
202 double width()
const {
return mXmax - mXmin; }
209 double height()
const {
return mYmax - mYmin; }
218 double area()
const {
return ( mXmax - mXmin ) * ( mYmax - mYmin ); }
225 double perimeter()
const {
return 2 * ( mXmax - mXmin ) + 2 * ( mYmax - mYmin ); }
238 double centerX, centerY;
246 centerX = mXmin + width() / 2;
247 centerY = mYmin + height() / 2;
249 scale( scaleFactor, centerX, centerY );
255 void scale(
double scaleFactor,
double centerX,
double centerY )
257 double newWidth = width() * scaleFactor;
258 double newHeight = height() * scaleFactor;
259 mXmin = centerX - newWidth / 2.0;
260 mXmax = centerX + newWidth / 2.0;
261 mYmin = centerY - newHeight / 2.0;
262 mYmax = centerY + newHeight / 2.0;
288 if ( p.
x() < xMinimum() )
289 setXMinimum( p.
x() );
290 else if ( p.
x() > xMaximum() )
291 setXMaximum( p.
x() );
292 if ( p.
y() < yMinimum() )
293 setYMinimum( p.
y() );
294 if ( p.
y() > yMaximum() )
295 setYMaximum( p.
y() );
306 return QgsRectangle( mXmin - width, mYmin - width, mXmax + width, mYmax + width );
315 if ( intersects( rect ) )
330 double x1 = ( mXmin > rect.mXmin ? mXmin : rect.mXmin );
331 double x2 = ( mXmax < rect.mXmax ? mXmax : rect.mXmax );
334 double y1 = ( mYmin > rect.mYmin ? mYmin : rect.mYmin );
335 double y2 = ( mYmax < rect.mYmax ? mYmax : rect.mYmax );
344 return ( rect.mXmin >= mXmin && rect.mXmax <= mXmax && rect.mYmin >= mYmin && rect.mYmax <= mYmax );
352 return mXmin <= p.
x() && p.
x() <= mXmax &&
353 mYmin <= p.
y() && p.
y() <= mYmax;
363 else if ( !rect.
isNull() )
365 mXmin = std::min( mXmin, rect.
xMinimum() );
366 mXmax = std::max( mXmax, rect.
xMaximum() );
367 mYmin = std::min( mYmin, rect.
yMinimum() );
368 mYmax = std::max( mYmax, rect.
yMaximum() );;
381 mXmin = ( ( mXmin < x ) ? mXmin : x );
382 mXmax = ( ( mXmax > x ) ? mXmax : x );
384 mYmin = ( ( mYmin < y ) ? mYmin : y );
385 mYmax = ( ( mYmax > y ) ? mYmax : y );
395 combineExtentWith( point.
x(), point.
y() );
447 QString asWktCoordinates()
const;
452 QString asWktPolygon()
const;
459 return QRectF( static_cast< qreal >( mXmin ), static_cast< qreal >( mYmin ), static_cast< qreal >( mXmax - mXmin ), static_cast< qreal >( mYmax - mYmin ) );
467 QString toString(
int precision = 16 )
const;
472 QString asPolygon()
const;
492 return ( !
operator==( r1 ) );
518 if ( std::isinf( mXmin ) || std::isinf( mYmin ) || std::isinf( mXmax ) || std::isinf( mYmax ) )
522 if ( std::isnan( mXmin ) || std::isnan( mYmin ) || std::isnan( mXmax ) || std::isnan( mYmax ) )
534 std::swap( mXmin, mYmin );
535 std::swap( mXmax, mYmax );
543 QgsBox3d toBox3d(
double zMin,
double zMax )
const;
546 operator QVariant()
const 548 return QVariant::fromValue( *
this );
560 SIP_PYOBJECT __repr__();
562 QString str = QStringLiteral(
"<QgsRectangle: %1>" ).arg( sipCpp->asWktCoordinates() );
563 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
592 return os << r.
toString().toLocal8Bit().data();
597 #endif // QGSRECTANGLE_H QgsRectangle(const QgsPointXY &p1, const QgsPointXY &p2)
Construct a rectangle from two points. The rectangle is normalized after construction.
bool contains(const QgsRectangle &rect) const
Returns true when rectangle contains other rectangle.
A rectangle specified with double values.
void setMinimal()
Set a rectangle so that min corner is at max and max corner is at min.
QgsRectangle(const QRectF &qRectF)
Construct a rectangle from a QRectF. The rectangle is normalized after construction.
void setXMaximum(double x)
Set the maximum x value.
void combineExtentWith(const QgsPointXY &point)
Expands the rectangle so that it covers both the original rectangle and the given point...
A class to represent a 2D point.
void scale(double scaleFactor, const QgsPointXY *c=nullptr)
Scale the rectangle around its center point.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
void include(const QgsPointXY &p)
Updates the rectangle to include the specified point.
double perimeter() const
Returns the perimeter of the rectangle.
A 3-dimensional box composed of x, y, z coordinates.
CORE_EXPORT QDataStream & operator<<(QDataStream &out, const QgsRectangle &rectangle)
Writes the list rectangle to stream out.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
QgsRectangle & operator=(const QgsRectangle &r1)
Assignment operator.
QgsRectangle buffered(double width) const
Gets rectangle enlarged by buffer.
void grow(double delta)
Grows the rectangle in place by the specified amount.
bool isEmpty() const
Returns true if the rectangle is empty.
double width() const
Returns the width of the rectangle.
void setYMinimum(double y)
Set the minimum y value.
bool contains(const QgsPointXY &p) const
Returns true when rectangle contains a point.
QgsRectangle intersect(const QgsRectangle &rect) const
Returns the intersection with the given rectangle.
QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
Q_DECLARE_METATYPE(QgsMeshTimeSettings)
QDateTime operator+(const QDateTime &start, QgsInterval interval)
bool isFinite() const
Returns true if the rectangle has finite boundaries.
A class to represent a vector.
QgsInterval operator-(const QDateTime &dt1, const QDateTime &dt2)
Returns the interval between two datetimes.
double area() const
Returns the area of the rectangle.
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
double xMaximum() const
Returns the x maximum value (right side of rectangle).
QgsRectangle(double xMin, double yMin=0, double xMax=0, double yMax=0)
Constructor.
void combineExtentWith(const QgsRectangle &rect)
Expands the rectangle so that it covers both the original rectangle and the given rectangle...
bool operator==(const QgsRectangle &r1) const
Comparison operator.
QRectF toRectF() const
Returns a QRectF with same coordinates as the rectangle.
CORE_EXPORT QDataStream & operator>>(QDataStream &in, QgsRectangle &rectangle)
Reads a rectangle from stream in into rectangle.
void setYMaximum(double y)
Set the maximum y value.
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
double xMinimum() const
Returns the x minimum value (left side of rectangle).
void combineExtentWith(double x, double y)
Expands the rectangle so that it covers both the original rectangle and the given point...
double yMaximum() const
Returns the y maximum value (top side of rectangle).
QgsPointXY center() const
Returns the center point of the rectangle.
void normalize()
Normalize the rectangle so it has non-negative width/height.
QgsRectangle(const QgsRectangle &other)
Copy constructor.
bool operator!=(const QgsRectangle &r1) const
Comparison operator.
bool intersects(const QgsRectangle &rect) const
Returns true when rectangle intersects with other rectangle.
void scale(double scaleFactor, double centerX, double centerY)
Scale the rectangle around its center point.
void setXMinimum(double x)
Set the minimum x value.
void invert()
Swap x/y coordinates in the rectangle.
double height() const
Returns the height of the rectangle.