52 #ifndef __PCL_Rectangle_h
53 #define __PCL_Rectangle_h
64 #ifdef __PCL_QT_INTERFACE
65 # include <QtCore/QRect>
66 # ifndef __PCL_QT_NO_RECT_DRAWING_HELPERS
67 # include <QtGui/QPainter>
68 # include <QtGui/QBrush>
125 template <
typename T>
inline
126 bool IsPoint( T x0, T y0, T x1, T y1 ) noexcept
128 return x0 == x1 && y0 == y1;
143 template <
typename T>
inline
144 bool IsLine( T x0, T y0, T x1, T y1 ) noexcept
146 return ((x0 == x1) ^ (y0 == y1)) != 0;
160 template <
typename T>
inline
163 return y0 == y1 && x0 != x1;
177 template <
typename T>
inline
180 return x0 == x1 && y0 != y1;
194 template <
typename T>
inline
197 return x0 == x1 || y0 == y1;
211 template <
typename T>
inline
212 bool IsRect( T x0, T y0, T x1, T y1 ) noexcept
214 return x0 != x1 && y0 != y1;
227 template <
typename T>
inline
230 return x0 < x1 && y0 < y1;
244 template <
typename T>
inline
247 return x0 <= x1 && y0 <= y1;
261 template <
typename T>
inline
280 #define PCL_ASSERT_RECT_SIZE() \
281 static_assert( sizeof( *this ) == 4*sizeof( T ), "Invalid sizeof( GenericRectangle<> )" )
314 template <
typename T>
345 PCL_ASSERT_RECT_SIZE();
358 template <
typename T1>
365 PCL_ASSERT_RECT_SIZE();
393 template <
typename T1>
396 PCL_ASSERT_RECT_SIZE();
426 template <
typename T1>
431 PCL_ASSERT_RECT_SIZE();
445 PCL_ASSERT_RECT_SIZE();
458 PCL_ASSERT_RECT_SIZE();
465 template <
typename T1>
470 PCL_ASSERT_RECT_SIZE();
473 #ifdef __PCL_QT_INTERFACE
476 component( r.right()+1 ), component( r.bottom()+1 ) )
478 PCL_ASSERT_RECT_SIZE();
481 GenericRectangle(
const QPoint& p0,
const QPoint& p1 )
482 : GenericRectangle( component( p0.x() ), component( p0.y() ),
483 component( p1.x() ), component( p1.y() ) )
485 PCL_ASSERT_RECT_SIZE();
590 return RightBottom();
598 return point( (x0 + x1)/2, (y0 + y1)/2 );
669 return Width() + Height();
678 return pcl::Abs( (x1 - x0)*(y1 - y0) );
698 return 0.5*(x0 + x1);
707 return 0.5*(y0 + y1);
718 double w = x1 - x0, h = y1 - y0;
824 template <
typename T1>
831 if ( x < x0 ) clip |= Clip::Left;
832 if ( x > x1 ) clip |= Clip::Right;
836 if ( x < x1 ) clip |= Clip::Left;
837 if ( x > x0 ) clip |= Clip::Right;
842 if ( y < y0 ) clip |= Clip::Top;
843 if ( y > y1 ) clip |= Clip::Bottom;
847 if ( y < y1 ) clip |= Clip::Top;
848 if ( y > y0 ) clip |= Clip::Bottom;
863 template <
typename T1>
866 return ClipCode( p.x, p.y );
883 template <
typename T1>
887 if ( x < x0 ) clip |= Clip::Left;
888 if ( x > x1 ) clip |= Clip::Right;
889 if ( y < y0 ) clip |= Clip::Top;
890 if ( y > y1 ) clip |= Clip::Bottom;
907 template <
typename T1>
910 return ClipCodeFast( p.x, p.y );
929 template <
typename T1>
930 bool ClipLine( T1& lx0, T1& ly0, T1& lx1, T1& ly1 )
const noexcept
940 if ( !(clip0 | clip1) )
946 ClipFlags clipOut = clip0 ? clip0 : clip1;
948 if ( clipOut & Clip::Left )
951 y = ly1 - (lx1 - x0_) * (ly1 - ly0)/(lx1 - lx0);
953 else if ( clipOut & Clip::Top )
955 x = lx0 - (ly0 - y0_) * (lx1 - lx0)/(ly1 - ly0);
958 else if ( clipOut & Clip::Right )
961 y = ly0 - (lx0 - x1_) * (ly1 - ly0)/(lx1 - lx0);
965 x = lx1 - (ly1 - y1_) * (lx1 - lx0)/(ly1 - ly0);
969 if ( clipOut == clip0 )
973 clip0 = ClipCode( lx0, ly0 );
979 clip1 = ClipCode( lx1, ly1 );
993 template <
typename T1>
996 return ClipLine( p0.x, p0.y, p1.x, p1.y );
1019 template <
typename T1>
1022 ClipFlags clip0 = ClipCodeFast( lx0, ly0 );
1023 ClipFlags clip1 = ClipCodeFast( lx1, ly1 );
1026 if ( !(clip0 | clip1) )
1028 if ( clip0 & clip1 )
1032 ClipFlags clipOut = clip0 ? clip0 : clip1;
1034 if ( clipOut & Clip::Left )
1037 y = ly1 - (lx1 - x0) * (ly1 - ly0)/(lx1 - lx0);
1039 else if ( clipOut & Clip::Top )
1041 x = lx0 - (ly0 - y0) * (lx1 - lx0)/(ly1 - ly0);
1044 else if ( clipOut & Clip::Right )
1047 y = ly0 - (lx0 - x1) * (ly1 - ly0)/(lx1 - lx0);
1051 x = lx1 - (ly1 - y1) * (lx1 - lx0)/(ly1 - ly0);
1055 if ( clipOut == clip0 )
1059 clip0 = ClipCodeFast( lx0, ly0 );
1065 clip1 = ClipCodeFast( lx1, ly1 );
1083 template <
typename T1>
1086 return ClipLineFast( p0.x, p0.y, p1.x, p1.y );
1093 template <
typename T1>
1096 return ((x0 < x1) ? (x >= x0 && x <= x1) : (x >= x1 && x <= x0)) &&
1097 ((y0 < y1) ? (y >= y0 && y <= y1) : (y >= y1 && y <= y0));
1103 template <
typename T1>
1106 return Includes( p.x, p.y );
1112 template <
typename T1>
1115 return Includes( r.x0, r.y0 ) && Includes( r.x1, r.y1 );
1118 #ifdef __PCL_QT_INTERFACE
1119 bool Includes(
const QPoint& p )
const noexcept
1121 return Includes( p.x(), p.y() );
1124 bool Includes(
const QRect& r )
const noexcept
1126 return Includes( r.left(), r.top() ) && Includes( r.right()+1, r.bottom()+1 );
1138 template <
typename T1>
1141 return x >= x0 && y >= y0 && x <= x1 && y <= y1;
1151 template <
typename T1>
1154 return IncludesFast( p.x, p.y );
1167 template <
typename T1>
1168 bool Intersects( T1 left, T1 top, T1 right, T1 bottom )
const noexcept
1171 return ((x0 < x1) ? (right >= x0 && left <= x1) : (right >= x1 && left <= x0)) &&
1172 ((y0 < y1) ? (bottom >= y0 && top <= y1) : (bottom >= y1 && top <= y0));
1178 template <
typename T1>
1181 return Intersects( r.x0, r.y0, r.x1, r.y1 );
1184 #ifdef __PCL_QT_INTERFACE
1185 bool Intersects(
const QRect& r )
const noexcept
1187 return Intersects( r.left(), r.top(), r.right()+1, r.bottom()+1 );
1210 template <
typename T1>
1213 return right >= x0 && left <= x1 && bottom >= y0 && top <= y1;
1222 template <
typename T1>
1225 return IntersectsFast( r.x0, r.y0, r.x1, r.y1 );
1232 template <
typename T1>
1235 Unite( r.x0, r.y0, r.x1, r.y1 );
1248 template <
typename T1>
1249 void Unite( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1252 Swap( left, right );
1254 Swap( top, bottom );
1286 template <
typename T1>
1289 UniteFast( r.x0, r.y0, r.x1, r.y1 );
1311 template <
typename T1>
1312 void UniteFast( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1323 template <
typename T1>
1337 template <
typename T1>
1349 template <
typename T1>
1356 #ifdef __PCL_QT_INTERFACE
1357 void Unite(
const QRect& r )
1359 Unite( r.left(), r.top(), r.right()+1, r.bottom()+1 );
1362 GenericRectangle Union(
const QRect& r )
const noexcept
1364 GenericRectangle r1 = *
this;
1369 GenericRectangle& operator |=(
const QRect& r ) noexcept
1384 template <
typename T1>
1387 return Intersect( r.x0, r.y0, r.x1, r.y1 );
1404 template <
typename T1>
1405 bool Intersect( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1408 Swap( left, right );
1410 Swap( top, bottom );
1448 template <
typename T1>
1451 return IntersectFast( r.x0, r.y0, r.x1, r.y1 );
1477 template <
typename T1>
1491 template <
typename T1>
1506 template <
typename T1>
1518 template <
typename T1>
1525 #ifdef __PCL_QT_INTERFACE
1526 bool Intersect(
const QRect& r ) noexcept
1528 return Intersect( r.left(), r.top(), r.right()+1, r.bottom()+1 );
1531 GenericRectangle Intersection(
const QRect& r )
const noexcept
1533 GenericRectangle r1 = *
this;
1534 (void)r1.Intersect( r );
1538 GenericRectangle& operator &=(
const QRect& r ) noexcept
1551 template <
typename T1>
1552 void Set( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1567 template <
typename T1>
1580 template <
typename T1>
1590 #ifdef __PCL_QT_INTERFACE
1591 void MoveTo(
const QPoint& p ) noexcept
1593 MoveTo( p.x(), p.y() );
1603 template <
typename T1>
1617 template <
typename T1>
1629 template <
typename T1>
1640 template <
typename T1>
1658 template <
typename T1>
1667 #ifdef __PCL_QT_INTERFACE
1668 void MoveBy(
const QPoint& p ) noexcept
1670 MoveBy( p.x(), p.y() );
1680 template <
typename T1>
1694 template <
typename T1>
1712 template <
typename T1>
1732 template <
typename T1>
1751 template <
typename T1>
1771 template <
typename T1>
1787 template <
typename T1>
1804 template <
typename T1>
1818 template <
typename T1>
1836 template <
typename T1>
1854 template <
typename T1>
1866 template <
typename T1>
1883 InflateBy( kx*Width()/2, ky*Height()/2 );
1894 InflateBy( k*Width()/2, k*Height()/2 );
1926 template <
typename T1>
1944 template <
typename T1>
1962 template <
typename T1>
1974 template <
typename T1>
1988 template <
typename T1>
2002 template <
typename T1>
2015 template <
typename T1,
typename T2>
2016 void Rotate( T1 angle, T2 xc, T2 yc ) noexcept
2027 template <
typename T1,
typename T2>
2030 Rotate( angle, center.x, center.y );
2038 template <
typename T1,
typename T2>
2039 void Rotate( T1 sa, T1 ca, T2 xc, T2 yc ) noexcept
2050 template <
typename T1,
typename T2>
2053 Rotate( sa, ca, center.x, center.y );
2061 template <
typename T1,
typename T2>
2065 r.
Rotate( angle, xc, yc );
2074 template <
typename T1,
typename T2>
2078 r.
Rotate( angle, center );
2088 template <
typename T1,
typename T2>
2092 r.
Rotate( sa, ca, xc, yc );
2102 template <
typename T1,
typename T2>
2106 r.
Rotate( sa, ca, center );
2128 PCL_PRECONDITION( n >= 0 )
2153 PCL_PRECONDITION( n >= 0 )
2209 template <
typename T1>
2226 template <
typename T1>
2242 x0 = y0 = x1 = y1 = d;
2246 #ifdef __PCL_QT_INTERFACE
2249 x0 = component( r.left() );
2250 y0 = component( r.top() );
2251 x1 = component( r.right()+1 );
2252 y1 = component( r.bottom()+1 );
2269 template <
typename T1>
2292 template <
typename T1>
2325 #ifdef __PCL_QT_INTERFACE
2328 component dx = component( p.x() ), dy = component( p.y() );
2349 template <
typename T1>
2372 template <
typename T1>
2405 #ifdef __PCL_QT_INTERFACE
2408 component dx = component( p.x() ), dy = component( p.y() );
2429 template <
typename T1>
2453 template <
typename T1>
2486 #ifdef __PCL_QT_INTERFACE
2489 component dx = component( p.x() ), dy = component( p.y() );
2490 x0 *= dx; y0 *= dy; x1 *= dx; y1 *= dy;
2507 template <
typename T1>
2533 template <
typename T1>
2561 x0 /= d; y0 /= d; x1 /= d; y1 /= d;
2565 #ifdef __PCL_QT_INTERFACE
2568 PCL_PRECONDITION( component( p.x() ) != component( 0 ) && component( p.y() ) != component( 0 ) )
2569 component dx = component( p.x() ), dy = component( p.y() );
2597 #ifdef __PCL_QT_INTERFACE
2598 operator QRect() const noexcept
2600 return QRect(
int( x0 ),
int( y0 ),
int( x1-x0 ),
int( y1-y0 ) );
2604 #ifdef __PCL_QT_INTERFACE
2605 # ifndef __PCL_QT_NO_RECT_DRAWING_HELPERS
2607 void Draw( QPainter& p,
const QBrush* b )
const
2609 int rx0, ry0, rx1, ry1;
2621 if ( rx1 - rx0 <= 1 )
2623 if ( ry1 - ry0 <= 1 )
2624 p.drawPoint( rx0, ry0 );
2626 p.drawLine( rx0, ry0, rx0, ry1-1 );
2628 else if ( ry1 - ry0 <= 1 )
2630 p.drawLine( rx0, ry0, rx1-1, ry0 );
2634 # if ( QT_VERSION >= 0x040000 )
2635 int w = rx1-rx0-1, h = ry1-ry0-1;
2637 int w = rx1-rx0, h = ry1-ry0;
2640 p.fillRect( rx0, ry0, w, h, *b );
2641 p.drawRect( rx0, ry0, w, h );
2645 void Draw( QPainter& p )
const
2650 void Draw( QPainter& p,
const QColor& c )
const
2661 #undef PCL_ASSERT_RECT_SIZE
2674 template <
typename T1,
typename T2>
inline
2677 return r1.x0 == r2.x0 && r1.y0 == r2.y0 && r1.x1 == r2.x1 && r1.y1 == r2.y1;
2685 template <
typename T>
inline
2688 return r1.x0 == d2 && r1.y0 == d2 && r1.x1 == d2 && r1.y1 == d2;
2697 template <
typename T>
inline
2700 return d1 == r2.x0 && d1 == r2.y0 && d1 == r2.x1 && d1 == r2.y1;
2709 template <
typename T1,
typename T2>
inline
2712 T1 x01 =
Min( r1.x0, r1.x1 ); T1 y01 =
Min( r1.y0, r1.y1 );
2713 T1 x11 =
Max( r1.x0, r1.x1 ); T1 y11 =
Max( r1.y0, r1.y1 );
2714 T2 x02 =
Min( r2.x0, r2.x1 ); T2 y02 =
Min( r2.y0, r2.y1 );
2715 T2 x12 =
Max( r2.x0, r2.x1 ); T2 y12 =
Max( r2.y0, r2.y1 );
2740 template <
typename T1,
typename T2>
inline
2744 T1( r1.x1 + r2.x1 ), T1( r1.y1 + r2.y1 ) );
2761 template <
typename T1,
typename T2>
inline
2765 T1( r1.x1 + p2.x ), T1( r1.y1 + p2.y ) );
2777 template <
typename T1,
typename T2>
inline
2781 T2( p1.x + r2.x1 ), T2( p1.y + r2.y1 ) );
2798 template <
typename T>
inline
2813 template <
typename T>
inline
2834 template <
typename T1,
typename T2>
inline
2838 T1( r1.x1 - r2.x1 ), T1( r1.y1 - r2.y1 ) );
2855 template <
typename T1,
typename T2>
inline
2859 T1( r1.x1 - p2.x ), T1( r1.y1 - p2.y ) );
2876 template <
typename T1,
typename T2>
inline
2880 T2( p1.x - r2.x1 ), T2( p1.y - r2.y1 ) );
2897 template <
typename T>
inline
2917 template <
typename T>
inline
2938 template <
typename T1,
typename T2>
inline
2942 T1( r1.x1 * r2.x1 ), T1( r1.y1 * r2.y1 ) );
2959 template <
typename T1,
typename T2>
inline
2963 T1( r1.x1 * p2.x ), T1( r1.y1 * p2.y ) );
2975 template <
typename T1,
typename T2>
inline
2979 T2( p1.x * r2.x1 ), T2( p1.y * r2.y1 ) );
2996 template <
typename T>
inline
3011 template <
typename T>
inline
3032 template <
typename T1,
typename T2>
inline
3035 PCL_PRECONDITION( r2.x0 != T2( 0 ) && r2.y0 != T2( 0 ) &&
3036 r2.x1 != T2( 0 ) && r2.y1 != T2( 0 ) )
3038 T1( r1.x1 / r2.x1 ), T1( r1.y1 / r2.y1 ) );
3055 template <
typename T1,
typename T2>
inline
3058 PCL_PRECONDITION( p2.x != T2( 0 ) && p2.y != T2( 0 ) )
3060 T1( r1.x1 / p2.x ), T1( r1.y1 / p2.y ) );
3077 template <
typename T1,
typename T2>
inline
3080 PCL_PRECONDITION( r2.x0 != T2( 0 ) && r2.y0 != T2( 0 ) &&
3081 r2.x1 != T2( 0 ) && r2.y1 != T2( 0 ) )
3083 T2( p1.x / r2.x1 ), T2( p1.y / r2.y1 ) );
3100 template <
typename T>
inline
3103 PCL_PRECONDITION( d2 != T( 0 ) )
3121 template <
typename T>
inline
3124 PCL_PRECONDITION( r2.x0 != T( 0 ) && r2.y0 != T( 0 ) &&
3125 r2.x1 != T( 0 ) && r2.y1 != T( 0 ) )
3144 template <
typename T,
typename T1,
typename T2>
inline
3167 template <
typename T,
typename T1,
typename T2>
inline
3188 template <
typename T,
typename T1,
typename T2>
inline
3210 template <
typename T,
typename T1,
typename T2>
inline
3227 template <
typename T>
inline
3236 #ifndef __PCL_NO_RECT_INSTANTIATE
3249 using I32Rect = GenericRectangle<int32>;
3268 using F32Rect = GenericRectangle<float>;
3287 using F64Rect = GenericRectangle<double>;
64-bit floating-point rectangle in the R^2 space.
32-bit floating-point rectangle in the R^2 space.
64-bit floating-point rectangle in the R^2 space.
32-bit floating-point rectangle in the R^2 space.
A type-safe collection of enumerated flags.
A generic point in the two-dimensional space.
A generic rectangle in the two-dimensional space.
point BottomRight() const noexcept
GenericRectangle Truncated() const noexcept
GenericRectangle(const pcl::GenericPoint< T1 > &leftTop, const pcl::GenericPoint< T1 > &rightBottom)
bool IsPointOrLine() const noexcept
component Left() const noexcept
constexpr GenericRectangle(component d)
void MoveBy(const pcl::GenericPoint< T1 > &d) noexcept
void SetWidth(T1 w) noexcept
GenericRectangle Rotated(T1 angle, const GenericPoint< T2 > ¢er) const noexcept
component Perimeter() const noexcept
double CenterY() const noexcept
constexpr GenericRectangle(T1 left, T1 top, T1 right, T1 bottom)
GenericRectangle IntersectionFast(const GenericRectangle< T1 > &r) const noexcept
bool IntersectsFast(const pcl::GenericRectangle< T1 > &r) const noexcept
ClipFlags ClipCodeFast(const pcl::GenericPoint< T1 > &p) const noexcept
void Round(int n) noexcept
point LeftTop() const noexcept
void UniteFast(T1 left, T1 top, T1 right, T1 bottom) noexcept
component x1
Horizontal coordinate of the lower right corner.
void Unite(T1 left, T1 top, T1 right, T1 bottom) noexcept
GenericRectangle Rounded(int n) const noexcept
void MoveTo(T1 x, T1 y) noexcept
GenericRectangle InflatedByFactors(double kx, double ky) noexcept
point RightTop() const noexcept
bool Intersect(T1 left, T1 top, T1 right, T1 bottom) noexcept
double CenterX() const noexcept
bool IsOrdered() const noexcept
component Area() const noexcept
void MoveBy(T1 dx, T1 dy) noexcept
GenericRectangle InflatedBy(T1 dx, T1 dy) const noexcept
component Bottom() const noexcept
GenericRectangle InflatedBy(T1 d) const noexcept
point CenterLeft() const noexcept
void InflateBy(T1 d) noexcept
constexpr GenericRectangle(component width, component height)
void DeflateBy(T1 d) noexcept
component y1
Vertical coordinate of the lower right corner.
point TopLeft() const noexcept
point Center() const noexcept
point LeftBottom() const noexcept
size_type IntegerArea() const
void InflateBy(T1 dx, T1 dy) noexcept
point CenterBottom() const noexcept
bool IsRect() const noexcept
GenericRectangle InflatedByFactor(double k) noexcept
bool IsVerticalLine() const noexcept
GenericRectangle Rotated(T1 sa, T1 ca, const GenericPoint< T2 > ¢er) const noexcept
void InflateByFactors(double kx, double ky) noexcept
bool IsHorizontalLine() const noexcept
GenericRectangle Rotated(T1 sa, T1 ca, T2 xc, T2 yc) const noexcept
GenericRectangle< int > RoundedToInt() const noexcept
GenericRectangle< int > TruncatedToInt() const noexcept
point RightBottom() const noexcept
bool ClipLineFast(pcl::GenericPoint< T1 > &p0, pcl::GenericPoint< T1 > &p1) const noexcept
void ResizeTo(T1 w, T1 h) noexcept
bool IsNormal() const noexcept
component y0
Vertical coordinate of the upper left corner.
bool IntersectsFast(T1 left, T1 top, T1 right, T1 bottom) const noexcept
bool Includes(T1 x, T1 y) const noexcept
component x0
Horizontal coordinate of the upper left corner.
ClipFlags ClipCodeFast(T1 x, T1 y) const noexcept
void Set(T1 left, T1 top, T1 right, T1 bottom) noexcept
GenericRectangle Rotated(T1 angle, T2 xc, T2 yc) const noexcept
GenericRectangle MovedTo(const pcl::GenericPoint< T1 > &p) const noexcept
void DeflateBy(T1 dx, T1 dy) noexcept
point CenterTop() const noexcept
GenericRectangle ResizedBy(T1 dw, T1 dh) const noexcept
void UniteFast(const GenericRectangle< T1 > &r) noexcept
void Rotate(T1 sa, T1 ca, T2 xc, T2 yc) noexcept
void InflateByFactor(double k) noexcept
GenericRectangle UnionFast(const GenericRectangle< T1 > &r) const noexcept
bool Intersects(const pcl::GenericRectangle< T1 > &r) const noexcept
ClipFlags ClipCode(T1 x, T1 y) const noexcept
GenericRectangle HeightSetTo(T1 h) const noexcept
bool ClipLine(pcl::GenericPoint< T1 > &p0, pcl::GenericPoint< T1 > &p1) const noexcept
component Right() const noexcept
GenericRectangle MovedBy(T1 dx, T1 dy) const noexcept
bool Includes(const GenericRectangle< T1 > &r) const noexcept
bool Includes(const pcl::GenericPoint< T1 > &p) const noexcept
point CenterRight() const noexcept
GenericRectangle ResizedTo(T1 w, T1 h) const noexcept
bool IntersectFast(const GenericRectangle< T1 > &r) noexcept
void Unite(const GenericRectangle< T1 > &r) noexcept
bool ClipLineFast(T1 &lx0, T1 &ly0, T1 &lx1, T1 &ly1) const noexcept
bool IncludesFast(const pcl::GenericPoint< T1 > &p) const noexcept
bool IntersectFast(T1 left, T1 top, T1 right, T1 bottom) noexcept
void Rotate(T1 angle, T2 xc, T2 yc) noexcept
void ResizeBy(T1 dw, T1 dh) noexcept
double Hypot() const noexcept
bool IsPoint() const noexcept
void Rotate(T1 angle, const GenericPoint< T2 > ¢er) noexcept
void MoveTo(const pcl::GenericPoint< T1 > &p) noexcept
GenericRectangle DeflatedBy(T1 d) const noexcept
bool Intersect(const GenericRectangle< T1 > &r) noexcept
GenericRectangle DeflatedBy(T1 dx, T1 dy) const noexcept
GenericRectangle(std::initializer_list< T1 > l)
point TopRight() const noexcept
point BottomLeft() const noexcept
ClipFlags ClipCode(const pcl::GenericPoint< T1 > &p) const noexcept
component ManhattanDistance() const noexcept
GenericRectangle(const GenericRectangle< T1 > &r)
constexpr GenericRectangle()
GenericRectangle Union(const GenericRectangle< T1 > &r) const noexcept
GenericRectangle Ordered() const noexcept
component Top() const noexcept
component Width() const noexcept
bool IncludesFast(T1 x, T1 y) const noexcept
GenericRectangle MovedBy(const pcl::GenericPoint< T1 > &d) const noexcept
GenericRectangle MovedTo(T1 x, T1 y) const noexcept
component Height() const noexcept
void MoveBy(T1 dxy) noexcept
void SetHeight(T1 h) noexcept
double Diagonal() const noexcept
GenericRectangle Intersection(const GenericRectangle< T1 > &r) const noexcept
GenericRectangle Rounded() const noexcept
bool ClipLine(T1 &lx0, T1 &ly0, T1 &lx1, T1 &ly1) const noexcept
GenericRectangle WidthSetTo(T1 w) const noexcept
void Rotate(T1 sa, T1 ca, const GenericPoint< T2 > ¢er) noexcept
bool IsLine() const noexcept
bool Intersects(T1 left, T1 top, T1 right, T1 bottom) const noexcept
32-bit integer rectangle on the plane.
32-bit integer rectangle on the plane.
bool operator==(const Array< T, A > &x1, const Array< T, A > &x2) noexcept
bool operator<(const Array< T, A > &x1, const Array< T, A > &x2) noexcept
Complex< T1 > operator-(const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept
Complex< T1 > operator*(const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept
Complex< T1 > operator+(const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept
Complex< T1 > operator/(const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept
Complex< T > Sqrt(const Complex< T > &c) noexcept
T Abs(const Complex< T > &c) noexcept
Complex< T > Round(const Complex< T > &c) noexcept
void SinCos(T x, T &sx, T &cx) noexcept
void Rotate(T &x, T &y, T1 sa, T1 ca, T2 xc, T2 yc) noexcept
int RoundInt(T x) noexcept
int TruncInt(T x) noexcept
void Swap(GenericPoint< T > &p1, GenericPoint< T > &p2) noexcept
bool IsHorizontalLine(T x0, T y0, T x1, T y1) noexcept
bool IsNormalRect(T x0, T y0, T x1, T y1) noexcept
bool IsRect(T x0, T y0, T x1, T y1) noexcept
bool IsOrderedRect(T x0, T y0, T x1, T y1) noexcept
bool IsLine(T x0, T y0, T x1, T y1) noexcept
bool IsVerticalLine(T x0, T y0, T x1, T y1) noexcept
bool IsPointOrLine(T x0, T y0, T x1, T y1) noexcept
bool IsPoint(T x0, T y0, T x1, T y1) noexcept
void OrderRect(T &x0, T &y0, T &x1, T &y1) noexcept
constexpr const T & Min(const T &a, const T &b) noexcept
constexpr const T & Max(const T &a, const T &b) noexcept