PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Rectangle.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/Rectangle.h - Released 2025-02-21T12:13:32Z
8 // ----------------------------------------------------------------------------
9 // This file is part of the PixInsight Class Library (PCL).
10 // PCL is a multiplatform C++ framework for development of PixInsight modules.
11 //
12 // Copyright (c) 2003-2025 Pleiades Astrophoto S.L. All Rights Reserved.
13 //
14 // Redistribution and use in both source and binary forms, with or without
15 // modification, is permitted provided that the following conditions are met:
16 //
17 // 1. All redistributions of source code must retain the above copyright
18 // notice, this list of conditions and the following disclaimer.
19 //
20 // 2. All redistributions in binary form must reproduce the above copyright
21 // notice, this list of conditions and the following disclaimer in the
22 // documentation and/or other materials provided with the distribution.
23 //
24 // 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
25 // of their contributors, may be used to endorse or promote products derived
26 // from this software without specific prior written permission. For written
27 // permission, please contact info@pixinsight.com.
28 //
29 // 4. All products derived from this software, in any form whatsoever, must
30 // reproduce the following acknowledgment in the end-user documentation
31 // and/or other materials provided with the product:
32 //
33 // "This product is based on software from the PixInsight project, developed
34 // by Pleiades Astrophoto and its contributors (https://pixinsight.com/)."
35 //
36 // Alternatively, if that is where third-party acknowledgments normally
37 // appear, this acknowledgment must be reproduced in the product itself.
38 //
39 // THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
40 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
41 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
43 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
44 // EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
45 // INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
46 // DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49 // POSSIBILITY OF SUCH DAMAGE.
50 // ----------------------------------------------------------------------------
51 
52 #ifndef __PCL_Rectangle_h
53 #define __PCL_Rectangle_h
54 
56 
57 #include <pcl/Defs.h>
58 
59 #include <pcl/Flags.h>
60 #include <pcl/Math.h>
61 #include <pcl/Point.h>
62 #include <pcl/Relational.h>
63 
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>
69 # endif
70 #endif
71 
72 namespace pcl
73 {
74 
75 // ----------------------------------------------------------------------------
76 
91 namespace Clip
92 {
93  enum mask_type
94  {
95  Inside = 0x00, // Unclipped: inside the clipping rectangle
96  Left = 0x01, // Clipped at the left side
97  Top = 0x02, // Clipped at the top side
98  Right = 0x04, // Clipped at the right side
99  Bottom = 0x08 // Clipped at the bottom side
100  };
101 }
102 
107 
108 // ----------------------------------------------------------------------------
109 
125 template <typename T> inline
126 bool IsPoint( T x0, T y0, T x1, T y1 ) noexcept
127 {
128  return x0 == x1 && y0 == y1;
129 }
130 
143 template <typename T> inline
144 bool IsLine( T x0, T y0, T x1, T y1 ) noexcept
145 {
146  return ((x0 == x1) ^ (y0 == y1)) != 0;
147 }
148 
160 template <typename T> inline
161 bool IsHorizontalLine( T x0, T y0, T x1, T y1 ) noexcept
162 {
163  return y0 == y1 && x0 != x1;
164 }
165 
177 template <typename T> inline
178 bool IsVerticalLine( T x0, T y0, T x1, T y1 ) noexcept
179 {
180  return x0 == x1 && y0 != y1;
181 }
182 
194 template <typename T> inline
195 bool IsPointOrLine( T x0, T y0, T x1, T y1 ) noexcept
196 {
197  return x0 == x1 || y0 == y1;
198 }
199 
211 template <typename T> inline
212 bool IsRect( T x0, T y0, T x1, T y1 ) noexcept
213 {
214  return x0 != x1 && y0 != y1;
215 }
216 
227 template <typename T> inline
228 bool IsNormalRect( T x0, T y0, T x1, T y1 ) noexcept
229 {
230  return x0 < x1 && y0 < y1;
231 }
232 
244 template <typename T> inline
245 bool IsOrderedRect( T x0, T y0, T x1, T y1 ) noexcept
246 {
247  return x0 <= x1 && y0 <= y1;
248 }
249 
261 template <typename T> inline
262 void OrderRect( T& x0, T& y0, T& x1, T& y1 ) noexcept
263 {
264  if ( x1 < x0 )
265  pcl::Swap( x0, x1 );
266  if ( y1 < y0 )
267  pcl::Swap( y0, y1 );
268 }
269 
270 // ----------------------------------------------------------------------------
271 
272 /*
273  * ### NB: Template class GenericRectangle cannot have virtual member
274  * functions. This is because internal PCL and core routines rely on
275  * GenericRectangle<int>, GenericRectangle<float> and
276  * GenericRectangle<double> to be directly castable to int*, float* and
277  * double*, respectively. See also the PCL_ASSERT_RECT_SIZE() macro.
278  */
279 
280 #define PCL_ASSERT_RECT_SIZE() \
281  static_assert( sizeof( *this ) == 4*sizeof( T ), "Invalid sizeof( GenericRectangle<> )" )
282 
314 template <typename T>
315 class PCL_CLASS GenericRectangle
316 {
317 public:
318 
322  using component = T;
323 
328 
329  /*
330  * Rectangle coordinates: x0=left, y0=top, x1=right, y1=bottom.
331  * The x1 (right) and y1 (bottom) coordinates are excluded from the
332  * rectangular area, so we always have: width=x1-x0 and height=y1-y0.
333  */
338 
343  constexpr GenericRectangle()
344  {
345  PCL_ASSERT_RECT_SIZE();
346  }
347 
358  template <typename T1>
359  constexpr GenericRectangle( T1 left, T1 top, T1 right, T1 bottom )
360  : x0( component( left ) )
361  , y0( component( top ) )
362  , x1( component( right ) )
363  , y1( component( bottom ) )
364  {
365  PCL_ASSERT_RECT_SIZE();
366  }
367 
393  template <typename T1>
394  GenericRectangle( std::initializer_list<T1> l )
395  {
396  PCL_ASSERT_RECT_SIZE();
397  switch ( l.size() )
398  {
399  default:
400  case 4: y1 = component( l.begin()[3] );
401  case 3: x1 = component( l.begin()[2] );
402  case 2: y0 = component( l.begin()[1] );
403  case 1: x0 = component( l.begin()[0] );
404  case 0: break;
405  }
406  switch ( l.size() )
407  {
408  case 0: x0 = component( 0 );
409  case 1: y0 = component( 0 );
410  case 2: x1 = component( 0 );
411  case 3: y1 = component( 0 );
412  default:
413  case 4: break;
414  }
415  }
416 
426  template <typename T1>
427  GenericRectangle( const pcl::GenericPoint<T1>& leftTop, const pcl::GenericPoint<T1>& rightBottom )
428  : GenericRectangle( component( leftTop.x ), component( leftTop.y ),
429  component( rightBottom.x ), component( rightBottom.y ) )
430  {
431  PCL_ASSERT_RECT_SIZE();
432  }
433 
442  constexpr GenericRectangle( component width, component height )
443  : GenericRectangle( component( 0 ), component( 0 ), width, height )
444  {
445  PCL_ASSERT_RECT_SIZE();
446  }
447 
456  : GenericRectangle( d, d, d, d )
457  {
458  PCL_ASSERT_RECT_SIZE();
459  }
460 
465  template <typename T1>
467  : GenericRectangle( component( r.x0 ), component( r.y0 ),
468  component( r.x1 ), component( r.y1 ) )
469  {
470  PCL_ASSERT_RECT_SIZE();
471  }
472 
473 #ifdef __PCL_QT_INTERFACE
474  GenericRectangle( const QRect& r )
475  : GenericRectangle( component( r.left() ), component( r.top() ),
476  component( r.right()+1 ), component( r.bottom()+1 ) )
477  {
478  PCL_ASSERT_RECT_SIZE();
479  }
480 
481  GenericRectangle( const QPoint& p0, const QPoint& p1 )
482  : GenericRectangle( component( p0.x() ), component( p0.y() ),
483  component( p1.x() ), component( p1.y() ) )
484  {
485  PCL_ASSERT_RECT_SIZE();
486  }
487 #endif
488 
493  component Left() const noexcept
494  {
495  return x0;
496  }
497 
502  component Top() const noexcept
503  {
504  return y0;
505  }
506 
511  component Right() const noexcept
512  {
513  return x1;
514  }
515 
520  component Bottom() const noexcept
521  {
522  return y1;
523  }
524 
529  point LeftTop() const noexcept
530  {
531  return point( pcl::Min( x0, x1 ), pcl::Min( y0, y1 ) );
532  }
533 
537  point TopLeft() const noexcept
538  {
539  return LeftTop();
540  }
541 
546  point RightTop() const noexcept
547  {
548  return point( pcl::Max( x0, x1 ), pcl::Min( y0, y1 ) );
549  }
550 
554  point TopRight() const noexcept
555  {
556  return RightTop();
557  }
558 
563  point LeftBottom() const noexcept
564  {
565  return point( pcl::Min( x0, x1 ), pcl::Max( y0, y1 ) );
566  }
567 
571  point BottomLeft() const noexcept
572  {
573  return LeftBottom();
574  }
575 
580  point RightBottom() const noexcept
581  {
582  return point( pcl::Max( x0, x1 ), pcl::Max( y0, y1 ) );
583  }
584 
588  point BottomRight() const noexcept
589  {
590  return RightBottom();
591  }
592 
596  point Center() const noexcept
597  {
598  return point( (x0 + x1)/2, (y0 + y1)/2 );
599  }
600 
604  point CenterTop() const noexcept
605  {
606  return point( (x0 + x1)/2, pcl::Min( y0, y1 ) );
607  }
608 
612  point CenterBottom() const noexcept
613  {
614  return point( (x0 + x1)/2, pcl::Min( y0, y1 ) );
615  }
616 
620  point CenterLeft() const noexcept
621  {
622  return point( pcl::Min( x0, x1 ), (y0 + y1)/2 );
623  }
624 
628  point CenterRight() const noexcept
629  {
630  return point( pcl::Min( x0, x1 ), (y0 + y1)/2 );
631  }
632 
637  component Width() const noexcept
638  {
639  return pcl::Abs( x1 - x0 );
640  }
641 
646  component Height() const noexcept
647  {
648  return pcl::Abs( y1 - y0 );
649  }
650 
655  component Perimeter() const noexcept
656  {
657  component w = Width(), h = Height();
658  return w+w+h+h;
659  }
660 
667  component ManhattanDistance() const noexcept
668  {
669  return Width() + Height();
670  }
671 
676  component Area() const noexcept
677  {
678  return pcl::Abs( (x1 - x0)*(y1 - y0) );
679  }
680 
688  {
689  return size_type( Width() ) * size_type( Height() );
690  }
691 
696  double CenterX() const noexcept
697  {
698  return 0.5*(x0 + x1);
699  }
700 
705  double CenterY() const noexcept
706  {
707  return 0.5*(y0 + y1);
708  }
709 
716  double Hypot() const noexcept
717  {
718  double w = x1 - x0, h = y1 - y0;
719  return w*w + h*h;
720  }
721 
726  double Diagonal() const noexcept
727  {
728  return pcl::Sqrt( Hypot() );
729  }
730 
734  bool IsPoint() const noexcept
735  {
736  return pcl::IsPoint( x0, y0, x1, y1 );
737  }
738 
742  bool IsLine() const noexcept
743  {
744  return pcl::IsLine( x0, y0, x1, y1 );
745  }
746 
750  bool IsHorizontalLine() const noexcept
751  {
752  return pcl::IsHorizontalLine( x0, y0, x1, y1 );
753  }
754 
758  bool IsVerticalLine() const noexcept
759  {
760  return pcl::IsVerticalLine( x0, y0, x1, y1 );
761  }
762 
766  bool IsPointOrLine() const noexcept
767  {
768  return pcl::IsPointOrLine( x0, y0, x1, y1 );
769  }
770 
775  bool IsRect() const noexcept
776  {
777  return pcl::IsRect( x0, y0, x1, y1 );
778  }
779 
783  bool IsNormal() const noexcept
784  {
785  return pcl::IsNormalRect( x0, y0, x1, y1 );
786  }
787 
791  bool IsOrdered() const noexcept
792  {
793  return pcl::IsOrderedRect( x0, y0, x1, y1 );
794  }
795 
799  void Order() noexcept
800  {
801  pcl::OrderRect( x0, y0, x1, y1 );
802  }
803 
807  GenericRectangle Ordered() const noexcept
808  {
809  GenericRectangle r = *this;
810  r.Order();
811  return r;
812  }
813 
824  template <typename T1>
825  ClipFlags ClipCode( T1 x, T1 y ) const noexcept
826  {
827  ClipFlags clip; // defaults to zero = Clip::Inside
828 
829  if ( x0 <= x1 )
830  {
831  if ( x < x0 ) clip |= Clip::Left;
832  if ( x > x1 ) clip |= Clip::Right;
833  }
834  else
835  {
836  if ( x < x1 ) clip |= Clip::Left;
837  if ( x > x0 ) clip |= Clip::Right;
838  }
839 
840  if ( y0 <= y1 )
841  {
842  if ( y < y0 ) clip |= Clip::Top;
843  if ( y > y1 ) clip |= Clip::Bottom;
844  }
845  else
846  {
847  if ( y < y1 ) clip |= Clip::Top;
848  if ( y > y0 ) clip |= Clip::Bottom;
849  }
850 
851  return clip;
852  }
853 
863  template <typename T1>
864  ClipFlags ClipCode( const pcl::GenericPoint<T1>& p ) const noexcept
865  {
866  return ClipCode( p.x, p.y );
867  }
868 
883  template <typename T1>
884  ClipFlags ClipCodeFast( T1 x, T1 y ) const noexcept
885  {
886  ClipFlags clip; // defaults to zero = Clip::Inside
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;
891  return clip;
892  }
893 
907  template <typename T1>
908  ClipFlags ClipCodeFast( const pcl::GenericPoint<T1>& p ) const noexcept
909  {
910  return ClipCodeFast( p.x, p.y );
911  }
912 
929  template <typename T1>
930  bool ClipLine( T1& lx0, T1& ly0, T1& lx1, T1& ly1 ) const noexcept
931  {
932  T x0_ = pcl::Min( x0, x1 );
933  T y0_ = pcl::Min( y0, y1 );
934  T x1_ = pcl::Max( x0, x1 );
935  T y1_ = pcl::Max( y0, y1 );
936  ClipFlags clip0 = ClipCode( lx0, ly0 );
937  ClipFlags clip1 = ClipCode( lx1, ly1 );
938  for ( ;; )
939  {
940  if ( !(clip0 | clip1) ) // both endpoints inside
941  return true;
942  if ( clip0 & clip1 ) // both endpoints at the same side
943  return false;
944 
945  // Only one endpoint outside
946  ClipFlags clipOut = clip0 ? clip0 : clip1;
947  T1 x, y;
948  if ( clipOut & Clip::Left )
949  {
950  x = x0_;
951  y = ly1 - (lx1 - x0_) * (ly1 - ly0)/(lx1 - lx0);
952  }
953  else if ( clipOut & Clip::Top )
954  {
955  x = lx0 - (ly0 - y0_) * (lx1 - lx0)/(ly1 - ly0);
956  y = y0_;
957  }
958  else if ( clipOut & Clip::Right )
959  {
960  x = x1_;
961  y = ly0 - (lx0 - x1_) * (ly1 - ly0)/(lx1 - lx0);
962  }
963  else // if ( clipOut & Clip::Bottom )
964  {
965  x = lx1 - (ly1 - y1_) * (lx1 - lx0)/(ly1 - ly0);
966  y = y1_;
967  }
968 
969  if ( clipOut == clip0 )
970  {
971  lx0 = x;
972  ly0 = y;
973  clip0 = ClipCode( lx0, ly0 );
974  }
975  else
976  {
977  lx1 = x;
978  ly1 = y;
979  clip1 = ClipCode( lx1, ly1 );
980  }
981  }
982  }
983 
993  template <typename T1>
994  bool ClipLine( pcl::GenericPoint<T1>& p0, pcl::GenericPoint<T1>& p1 ) const noexcept
995  {
996  return ClipLine( p0.x, p0.y, p1.x, p1.y );
997  }
998 
1019  template <typename T1>
1020  bool ClipLineFast( T1& lx0, T1& ly0, T1& lx1, T1& ly1 ) const noexcept
1021  {
1022  ClipFlags clip0 = ClipCodeFast( lx0, ly0 );
1023  ClipFlags clip1 = ClipCodeFast( lx1, ly1 );
1024  for ( ;; )
1025  {
1026  if ( !(clip0 | clip1) ) // both endpoints inside
1027  return true;
1028  if ( clip0 & clip1 ) // both endpoints at the same side
1029  return false;
1030 
1031  // Only one endpoint outside
1032  ClipFlags clipOut = clip0 ? clip0 : clip1;
1033  T1 x, y;
1034  if ( clipOut & Clip::Left )
1035  {
1036  x = x0;
1037  y = ly1 - (lx1 - x0) * (ly1 - ly0)/(lx1 - lx0);
1038  }
1039  else if ( clipOut & Clip::Top )
1040  {
1041  x = lx0 - (ly0 - y0) * (lx1 - lx0)/(ly1 - ly0);
1042  y = y0;
1043  }
1044  else if ( clipOut & Clip::Right )
1045  {
1046  x = x1;
1047  y = ly0 - (lx0 - x1) * (ly1 - ly0)/(lx1 - lx0);
1048  }
1049  else // if ( clipOut & Clip::Bottom )
1050  {
1051  x = lx1 - (ly1 - y1) * (lx1 - lx0)/(ly1 - ly0);
1052  y = y1;
1053  }
1054 
1055  if ( clipOut == clip0 )
1056  {
1057  lx0 = x;
1058  ly0 = y;
1059  clip0 = ClipCodeFast( lx0, ly0 );
1060  }
1061  else
1062  {
1063  lx1 = x;
1064  ly1 = y;
1065  clip1 = ClipCodeFast( lx1, ly1 );
1066  }
1067  }
1068  }
1069 
1083  template <typename T1>
1085  {
1086  return ClipLineFast( p0.x, p0.y, p1.x, p1.y );
1087  }
1088 
1093  template <typename T1>
1094  bool Includes( T1 x, T1 y ) const noexcept
1095  {
1096  return ((x0 < x1) ? (x >= x0 && x <= x1) : (x >= x1 && x <= x0)) &&
1097  ((y0 < y1) ? (y >= y0 && y <= y1) : (y >= y1 && y <= y0));
1098  }
1099 
1103  template <typename T1>
1104  bool Includes( const pcl::GenericPoint<T1>& p ) const noexcept
1105  {
1106  return Includes( p.x, p.y );
1107  }
1108 
1112  template <typename T1>
1113  bool Includes( const GenericRectangle<T1>& r ) const noexcept
1114  {
1115  return Includes( r.x0, r.y0 ) && Includes( r.x1, r.y1 );
1116  }
1117 
1118 #ifdef __PCL_QT_INTERFACE
1119  bool Includes( const QPoint& p ) const noexcept
1120  {
1121  return Includes( p.x(), p.y() );
1122  }
1123 
1124  bool Includes( const QRect& r ) const noexcept
1125  {
1126  return Includes( r.left(), r.top() ) && Includes( r.right()+1, r.bottom()+1 );
1127  }
1128 #endif
1129 
1138  template <typename T1>
1139  bool IncludesFast( T1 x, T1 y ) const noexcept
1140  {
1141  return x >= x0 && y >= y0 && x <= x1 && y <= y1;
1142  }
1143 
1151  template <typename T1>
1152  bool IncludesFast( const pcl::GenericPoint<T1>& p ) const noexcept
1153  {
1154  return IncludesFast( p.x, p.y );
1155  }
1156 
1167  template <typename T1>
1168  bool Intersects( T1 left, T1 top, T1 right, T1 bottom ) const noexcept
1169  {
1170  OrderRect( left, top, right, bottom );
1171  return ((x0 < x1) ? (right >= x0 && left <= x1) : (right >= x1 && left <= x0)) &&
1172  ((y0 < y1) ? (bottom >= y0 && top <= y1) : (bottom >= y1 && top <= y0));
1173  }
1174 
1178  template <typename T1>
1179  bool Intersects( const pcl::GenericRectangle<T1>& r ) const noexcept
1180  {
1181  return Intersects( r.x0, r.y0, r.x1, r.y1 );
1182  }
1183 
1184 #ifdef __PCL_QT_INTERFACE
1185  bool Intersects( const QRect& r ) const noexcept
1186  {
1187  return Intersects( r.left(), r.top(), r.right()+1, r.bottom()+1 );
1188  }
1189 #endif
1190 
1210  template <typename T1>
1211  bool IntersectsFast( T1 left, T1 top, T1 right, T1 bottom ) const noexcept
1212  {
1213  return right >= x0 && left <= x1 && bottom >= y0 && top <= y1;
1214  }
1215 
1222  template <typename T1>
1223  bool IntersectsFast( const pcl::GenericRectangle<T1>& r ) const noexcept
1224  {
1225  return IntersectsFast( r.x0, r.y0, r.x1, r.y1 );
1226  }
1227 
1232  template <typename T1>
1233  void Unite( const GenericRectangle<T1>& r ) noexcept
1234  {
1235  Unite( r.x0, r.y0, r.x1, r.y1 );
1236  }
1237 
1248  template <typename T1>
1249  void Unite( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1250  {
1251  if ( right < left )
1252  Swap( left, right );
1253  if ( bottom < top )
1254  Swap( top, bottom );
1255 
1256  if ( x0 <= x1 )
1257  {
1258  x0 = pcl::Min( x0, component( left ) );
1259  x1 = pcl::Max( x1, component( right ) );
1260  }
1261  else
1262  {
1263  x0 = pcl::Max( x0, component( right ) );
1264  x1 = pcl::Min( x1, component( left ) );
1265  }
1266 
1267  if ( y0 <= y1 )
1268  {
1269  y0 = pcl::Min( y0, component( top ) );
1270  y1 = pcl::Max( y1, component( bottom ) );
1271  }
1272  else
1273  {
1274  y0 = pcl::Max( y0, component( bottom ) );
1275  y1 = pcl::Min( y1, component( top ) );
1276  }
1277  }
1278 
1286  template <typename T1>
1287  void UniteFast( const GenericRectangle<T1>& r ) noexcept
1288  {
1289  UniteFast( r.x0, r.y0, r.x1, r.y1 );
1290  }
1291 
1311  template <typename T1>
1312  void UniteFast( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1313  {
1314  x0 = pcl::Min( x0, component( left ) );
1315  y0 = pcl::Min( y0, component( top ) );
1316  x1 = pcl::Max( x1, component( right ) );
1317  y1 = pcl::Max( y1, component( bottom ) );
1318  }
1319 
1323  template <typename T1>
1324  GenericRectangle Union( const GenericRectangle<T1>& r ) const noexcept
1325  {
1326  GenericRectangle r1 = *this;
1327  r1.Unite( r );
1328  return r1;
1329  }
1330 
1337  template <typename T1>
1339  {
1340  GenericRectangle r1 = *this;
1341  r1.UniteFast( r );
1342  return r1;
1343  }
1344 
1349  template <typename T1>
1350  GenericRectangle& operator |=( const GenericRectangle<T1>& r ) noexcept
1351  {
1352  Unite( r );
1353  return *this;
1354  }
1355 
1356 #ifdef __PCL_QT_INTERFACE
1357  void Unite( const QRect& r )
1358  {
1359  Unite( r.left(), r.top(), r.right()+1, r.bottom()+1 );
1360  }
1361 
1362  GenericRectangle Union( const QRect& r ) const noexcept
1363  {
1364  GenericRectangle r1 = *this;
1365  r1.Unite( r );
1366  return r1;
1367  }
1368 
1369  GenericRectangle& operator |=( const QRect& r ) noexcept
1370  {
1371  Unite( r );
1372  return *this;
1373  }
1374 #endif
1375 
1384  template <typename T1>
1385  bool Intersect( const GenericRectangle<T1>& r ) noexcept
1386  {
1387  return Intersect( r.x0, r.y0, r.x1, r.y1 );
1388  }
1389 
1404  template <typename T1>
1405  bool Intersect( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1406  {
1407  if ( right < left )
1408  Swap( left, right );
1409  if ( bottom < top )
1410  Swap( top, bottom );
1411 
1412  if ( x0 <= x1 )
1413  {
1414  x0 = pcl::Max( x0, component( left ) );
1415  x1 = pcl::Min( x1, component( right ) );
1416  }
1417  else
1418  {
1419  x0 = pcl::Min( x0, component( right ) );
1420  x1 = pcl::Max( x1, component( left ) );
1421  }
1422 
1423  if ( y0 <= y1 )
1424  {
1425  y0 = pcl::Max( y0, component( top ) );
1426  y1 = pcl::Min( y1, component( bottom ) );
1427  }
1428  else
1429  {
1430  y0 = pcl::Min( y0, component( bottom ) );
1431  y1 = pcl::Max( y1, component( top ) );
1432  }
1433 
1434  return IsRect();
1435  }
1436 
1448  template <typename T1>
1449  bool IntersectFast( const GenericRectangle<T1>& r ) noexcept
1450  {
1451  return IntersectFast( r.x0, r.y0, r.x1, r.y1 );
1452  }
1453 
1477  template <typename T1>
1478  bool IntersectFast( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1479  {
1480  x0 = pcl::Max( x0, component( left ) );
1481  y0 = pcl::Max( y0, component( top ) );
1482  x1 = pcl::Min( x1, component( right ) );
1483  y1 = pcl::Min( y1, component( bottom ) );
1484  return IsRect();
1485  }
1486 
1491  template <typename T1>
1493  {
1494  GenericRectangle r1 = *this;
1495  (void)r1.Intersect( r );
1496  return r1;
1497  }
1498 
1506  template <typename T1>
1508  {
1509  GenericRectangle r1 = *this;
1510  (void)r1.IntersectFast( r );
1511  return r1;
1512  }
1513 
1518  template <typename T1>
1519  GenericRectangle& operator &=( const GenericRectangle<T1>& r ) noexcept
1520  {
1521  Intersect( r );
1522  return *this;
1523  }
1524 
1525 #ifdef __PCL_QT_INTERFACE
1526  bool Intersect( const QRect& r ) noexcept
1527  {
1528  return Intersect( r.left(), r.top(), r.right()+1, r.bottom()+1 );
1529  }
1530 
1531  GenericRectangle Intersection( const QRect& r ) const noexcept
1532  {
1533  GenericRectangle r1 = *this;
1534  (void)r1.Intersect( r );
1535  return r1;
1536  }
1537 
1538  GenericRectangle& operator &=( const QRect& r ) noexcept
1539  {
1540  Intersect( r );
1541  return *this;
1542  }
1543 #endif
1544 
1551  template <typename T1>
1552  void Set( T1 left, T1 top, T1 right, T1 bottom ) noexcept
1553  {
1554  x0 = component( left );
1555  y0 = component( top );
1556  x1 = component( right );
1557  y1 = component( bottom );
1558  }
1559 
1567  template <typename T1>
1568  void MoveTo( const pcl::GenericPoint<T1>& p ) noexcept
1569  {
1570  MoveTo( p.x, p.y );
1571  }
1572 
1580  template <typename T1>
1581  void MoveTo( T1 x, T1 y ) noexcept
1582  {
1583  component dx = x1 - x0, dy = y1 - y0;
1584  x0 = component( x );
1585  y0 = component( y );
1586  x1 = x0 + dx;
1587  y1 = y0 + dy;
1588  }
1589 
1590 #ifdef __PCL_QT_INTERFACE
1591  void MoveTo( const QPoint& p ) noexcept
1592  {
1593  MoveTo( p.x(), p.y() );
1594  }
1595 #endif
1596 
1603  template <typename T1>
1605  {
1606  GenericRectangle r( *this );
1607  r.MoveTo( p );
1608  return r;
1609  }
1610 
1617  template <typename T1>
1618  GenericRectangle MovedTo( T1 x, T1 y ) const noexcept
1619  {
1620  GenericRectangle r( *this );
1621  r.MoveTo( x, y );
1622  return r;
1623  }
1624 
1629  template <typename T1>
1630  void MoveBy( const pcl::GenericPoint<T1>& d ) noexcept
1631  {
1632  MoveBy( d.x, d.y );
1633  }
1634 
1640  template <typename T1>
1641  void MoveBy( T1 dx, T1 dy ) noexcept
1642  {
1643  x0 += component( dx );
1644  y0 += component( dy );
1645  x1 += component( dx );
1646  y1 += component( dy );
1647  }
1648 
1658  template <typename T1>
1659  void MoveBy( T1 dxy ) noexcept
1660  {
1661  x0 += component( dxy );
1662  y0 += component( dxy );
1663  x1 += component( dxy );
1664  y1 += component( dxy );
1665  }
1666 
1667 #ifdef __PCL_QT_INTERFACE
1668  void MoveBy( const QPoint& p ) noexcept
1669  {
1670  MoveBy( p.x(), p.y() );
1671  }
1672 #endif
1673 
1680  template <typename T1>
1682  {
1683  GenericRectangle r( *this );
1684  r.MoveBy( d );
1685  return r;
1686  }
1687 
1694  template <typename T1>
1695  GenericRectangle MovedBy( T1 dx, T1 dy ) const noexcept
1696  {
1697  GenericRectangle r( *this );
1698  r.MoveBy( dx, dy );
1699  return r;
1700  }
1701 
1712  template <typename T1>
1713  void ResizeTo( T1 w, T1 h ) noexcept
1714  {
1715  if ( x0 <= x1 )
1716  x1 = x0 + component( w );
1717  else
1718  x0 = x1 + component( w );
1719 
1720  if ( y0 <= y1 )
1721  y1 = y0 + component( h );
1722  else
1723  y0 = y1 + component( h );
1724  }
1725 
1732  template <typename T1>
1733  GenericRectangle ResizedTo( T1 w, T1 h ) const noexcept
1734  {
1735  GenericRectangle r( *this );
1736  r.ResizeTo( w, h );
1737  return r;
1738  }
1739 
1751  template <typename T1>
1752  void ResizeBy( T1 dw, T1 dh ) noexcept
1753  {
1754  if ( x0 <= x1 )
1755  x1 += component( dw );
1756  else
1757  x0 += component( dw );
1758 
1759  if ( y0 <= y1 )
1760  y1 += component( dh );
1761  else
1762  y0 += component( dh );
1763  }
1764 
1771  template <typename T1>
1772  GenericRectangle ResizedBy( T1 dw, T1 dh ) const noexcept
1773  {
1774  GenericRectangle r( *this );
1775  r.ResizeBy( dw, dh );
1776  return r;
1777  }
1778 
1787  template <typename T1>
1788  void SetWidth( T1 w ) noexcept
1789  {
1790  if ( x0 <= x1 )
1791  x1 = x0 + component( w );
1792  else
1793  x0 = x1 + component( w );
1794  }
1795 
1804  template <typename T1>
1805  void SetHeight( T1 h ) noexcept
1806  {
1807  if ( y0 <= y1 )
1808  y1 = y0 + component( h );
1809  else
1810  y0 = y1 + component( h );
1811  }
1812 
1818  template <typename T1>
1819  void InflateBy( T1 dx, T1 dy ) noexcept
1820  {
1821  if ( x1 < x0 )
1822  dx = -dx;
1823  if ( y1 < y0 )
1824  dy = -dy;
1825  x0 -= dx;
1826  y0 -= dy;
1827  x1 += dx;
1828  y1 += dy;
1829  }
1830 
1836  template <typename T1>
1837  void InflateBy( T1 d ) noexcept
1838  {
1839  if ( x0 <= x1 )
1840  x0 -= d, x1 += d;
1841  else
1842  x0 += d, x1 -= d;
1843 
1844  if ( y0 <= y1 )
1845  y0 -= d, y1 += d;
1846  else
1847  y0 += d, y1 -= d;
1848  }
1849 
1854  template <typename T1>
1855  GenericRectangle InflatedBy( T1 dx, T1 dy ) const noexcept
1856  {
1857  GenericRectangle r( *this );
1858  r.InflateBy( dx, dy );
1859  return r;
1860  }
1861 
1866  template <typename T1>
1867  GenericRectangle InflatedBy( T1 d ) const noexcept
1868  {
1869  GenericRectangle r( *this );
1870  r.InflateBy( d );
1871  return r;
1872  }
1873 
1881  void InflateByFactors( double kx, double ky ) noexcept
1882  {
1883  InflateBy( kx*Width()/2, ky*Height()/2 );
1884  }
1885 
1892  void InflateByFactor( double k ) noexcept
1893  {
1894  InflateBy( k*Width()/2, k*Height()/2 );
1895  }
1896 
1902  GenericRectangle InflatedByFactors( double kx, double ky ) noexcept
1903  {
1904  GenericRectangle r( *this );
1905  r.InflateByFactors( kx, ky );
1906  return r;
1907  }
1908 
1914  GenericRectangle InflatedByFactor( double k ) noexcept
1915  {
1916  GenericRectangle r( *this );
1917  r.InflateByFactor( k );
1918  return r;
1919  }
1920 
1926  template <typename T1>
1927  void DeflateBy( T1 dx, T1 dy ) noexcept
1928  {
1929  if ( x1 < x0 )
1930  dx = -dx;
1931  if ( y1 < y0 )
1932  dy = -dy;
1933  x0 += dx;
1934  y0 += dy;
1935  x1 -= dx;
1936  y1 -= dy;
1937  }
1938 
1944  template <typename T1>
1945  void DeflateBy( T1 d ) noexcept
1946  {
1947  if ( x0 <= x1 )
1948  x0 += d, x1 -= d;
1949  else
1950  x0 -= d, x1 += d;
1951 
1952  if ( y0 <= y1 )
1953  y0 += d, y1 -= d;
1954  else
1955  y0 -= d, y1 += d;
1956  }
1957 
1962  template <typename T1>
1963  GenericRectangle DeflatedBy( T1 dx, T1 dy ) const noexcept
1964  {
1965  GenericRectangle r( *this );
1966  r.DeflateBy( dx, dy );
1967  return r;
1968  }
1969 
1974  template <typename T1>
1975  GenericRectangle DeflatedBy( T1 d ) const noexcept
1976  {
1977  GenericRectangle r( *this );
1978  r.DeflateBy( d );
1979  return r;
1980  }
1981 
1988  template <typename T1>
1989  GenericRectangle WidthSetTo( T1 w ) const noexcept
1990  {
1991  GenericRectangle r( *this );
1992  r.SetWidth( w );
1993  return r;
1994  }
1995 
2002  template <typename T1>
2003  GenericRectangle HeightSetTo( T1 h ) const noexcept
2004  {
2005  GenericRectangle r( *this );
2006  r.SetHeight( h );
2007  return r;
2008  }
2009 
2015  template <typename T1, typename T2>
2016  void Rotate( T1 angle, T2 xc, T2 yc ) noexcept
2017  {
2018  T1 sa, ca; pcl::SinCos( angle, sa, ca );
2019  pcl::Rotate( x0, y0, sa, ca, xc, yc );
2020  pcl::Rotate( x1, y1, sa, ca, xc, yc );
2021  }
2022 
2027  template <typename T1, typename T2>
2028  void Rotate( T1 angle, const GenericPoint<T2>& center ) noexcept
2029  {
2030  Rotate( angle, center.x, center.y );
2031  }
2032 
2038  template <typename T1, typename T2>
2039  void Rotate( T1 sa, T1 ca, T2 xc, T2 yc ) noexcept
2040  {
2041  pcl::Rotate( x0, y0, sa, ca, xc, yc );
2042  pcl::Rotate( x1, y1, sa, ca, xc, yc );
2043  }
2044 
2050  template <typename T1, typename T2>
2051  void Rotate( T1 sa, T1 ca, const GenericPoint<T2>& center ) noexcept
2052  {
2053  Rotate( sa, ca, center.x, center.y );
2054  }
2055 
2061  template <typename T1, typename T2>
2062  GenericRectangle Rotated( T1 angle, T2 xc, T2 yc ) const noexcept
2063  {
2064  GenericRectangle r( *this );
2065  r.Rotate( angle, xc, yc );
2066  return r;
2067  }
2068 
2074  template <typename T1, typename T2>
2075  GenericRectangle Rotated( T1 angle, const GenericPoint<T2>& center ) const noexcept
2076  {
2077  GenericRectangle r( *this );
2078  r.Rotate( angle, center );
2079  return r;
2080  }
2081 
2088  template <typename T1, typename T2>
2089  GenericRectangle Rotated( T1 sa, T1 ca, T2 xc, T2 yc ) const noexcept
2090  {
2091  GenericRectangle r( *this );
2092  r.Rotate( sa, ca, xc, yc );
2093  return r;
2094  }
2095 
2102  template <typename T1, typename T2>
2103  GenericRectangle Rotated( T1 sa, T1 ca, const GenericPoint<T2>& center ) const noexcept
2104  {
2105  GenericRectangle r( *this );
2106  r.Rotate( sa, ca, center );
2107  return r;
2108  }
2109 
2114  void Round() noexcept
2115  {
2116  x0 = component( pcl::Round( double( x0 ) ) );
2117  y0 = component( pcl::Round( double( y0 ) ) );
2118  x1 = component( pcl::Round( double( x1 ) ) );
2119  y1 = component( pcl::Round( double( y1 ) ) );
2120  }
2121 
2126  void Round( int n ) noexcept
2127  {
2128  PCL_PRECONDITION( n >= 0 )
2129  if ( n < 0 )
2130  n = 0;
2131  x0 = component( pcl::Round( double( x0 ), n ) );
2132  y0 = component( pcl::Round( double( y0 ), n ) );
2133  x1 = component( pcl::Round( double( x1 ), n ) );
2134  y1 = component( pcl::Round( double( y1 ), n ) );
2135  }
2136 
2141  GenericRectangle Rounded() const noexcept
2142  {
2143  return GenericRectangle( component( pcl::Round( double( x0 ) ) ), component( pcl::Round( double( y0 ) ) ),
2144  component( pcl::Round( double( x1 ) ) ), component( pcl::Round( double( y1 ) ) ) );
2145  }
2146 
2151  GenericRectangle Rounded( int n ) const noexcept
2152  {
2153  PCL_PRECONDITION( n >= 0 )
2154  return GenericRectangle( component( pcl::Round( double( x0 ), n ) ), component( pcl::Round( double( y0 ), n ) ),
2155  component( pcl::Round( double( x1 ), n ) ), component( pcl::Round( double( y1 ), n ) ) );
2156  }
2157 
2163  {
2164  return GenericRectangle<int>( pcl::RoundInt( double( x0 ) ), pcl::RoundInt( double( y0 ) ),
2165  pcl::RoundInt( double( x1 ) ), pcl::RoundInt( double( y1 ) ) );
2166  }
2167 
2173  void Truncate() noexcept
2174  {
2175  x0 = component( pcl::Trunc( double( x0 ) ) );
2176  y0 = component( pcl::Trunc( double( y0 ) ) );
2177  x1 = component( pcl::Trunc( double( x1 ) ) );
2178  y1 = component( pcl::Trunc( double( y1 ) ) );
2179  }
2180 
2187  GenericRectangle Truncated() const noexcept
2188  {
2189  return GenericRectangle( component( pcl::Trunc( double( x0 ) ) ), component( pcl::Trunc( double( y0 ) ) ),
2190  component( pcl::Trunc( double( x1 ) ) ), component( pcl::Trunc( double( y1 ) ) ) );
2191  }
2192 
2200  {
2201  return GenericRectangle<int>( pcl::TruncInt( double( x0 ) ), pcl::TruncInt( double( y0 ) ),
2202  pcl::TruncInt( double( x1 ) ), pcl::TruncInt( double( y1 ) ) );
2203  }
2204 
2209  template <typename T1>
2210  GenericRectangle& operator =( const GenericRectangle<T1>& r ) noexcept
2211  {
2212  x0 = component( r.x0 );
2213  y0 = component( r.y0 );
2214  x1 = component( r.x1 );
2215  y1 = component( r.y1 );
2216  return *this;
2217  }
2218 
2226  template <typename T1>
2227  GenericRectangle& operator =( const pcl::GenericPoint<T1>& p ) noexcept
2228  {
2229  x0 = x1 = component( p.x );
2230  y0 = y1 = component( p.y );
2231  return *this;
2232  }
2233 
2240  GenericRectangle& operator =( component d ) noexcept
2241  {
2242  x0 = y0 = x1 = y1 = d;
2243  return *this;
2244  }
2245 
2246 #ifdef __PCL_QT_INTERFACE
2247  GenericRectangle& operator =( const QRect& r ) noexcept
2248  {
2249  x0 = component( r.left() );
2250  y0 = component( r.top() );
2251  x1 = component( r.right()+1 );
2252  y1 = component( r.bottom()+1 );
2253  return *this;
2254  }
2255 #endif
2256 
2269  template <typename T1>
2270  GenericRectangle& operator +=( const GenericRectangle<T1>& r ) noexcept
2271  {
2272  x0 += component( r.x0 );
2273  y0 += component( r.y0 );
2274  x1 += component( r.x1 );
2275  y1 += component( r.y1 );
2276  return *this;
2277  }
2278 
2292  template <typename T1>
2293  GenericRectangle& operator +=( const pcl::GenericPoint<T1>& p ) noexcept
2294  {
2295  x0 += component( p.x );
2296  y0 += component( p.y );
2297  x1 += component( p.x );
2298  y1 += component( p.y );
2299  return *this;
2300  }
2301 
2316  GenericRectangle& operator +=( component d ) noexcept
2317  {
2318  x0 += d;
2319  y0 += d;
2320  x1 += d;
2321  y1 += d;
2322  return *this;
2323  }
2324 
2325 #ifdef __PCL_QT_INTERFACE
2326  GenericRectangle& operator +=( const QPoint& p ) noexcept
2327  {
2328  component dx = component( p.x() ), dy = component( p.y() );
2329  x0 += dx;
2330  y0 += dy;
2331  x1 += dx;
2332  y1 += dy;
2333  return *this;
2334  }
2335 #endif
2336 
2349  template <typename T1>
2350  GenericRectangle& operator -=( const GenericRectangle<T1>& r ) noexcept
2351  {
2352  x0 -= component( r.x0 );
2353  y0 -= component( r.y0 );
2354  x1 -= component( r.x1 );
2355  y1 -= component( r.y1 );
2356  return *this;
2357  }
2358 
2372  template <typename T1>
2373  GenericRectangle& operator -=( const pcl::GenericPoint<T1>& p ) noexcept
2374  {
2375  x0 -= component( p.x );
2376  y0 -= component( p.y );
2377  x1 -= component( p.x );
2378  y1 -= component( p.y );
2379  return *this;
2380  }
2381 
2396  GenericRectangle& operator -=( component d ) noexcept
2397  {
2398  x0 -= d;
2399  y0 -= d;
2400  x1 -= d;
2401  y1 -= d;
2402  return *this;
2403  }
2404 
2405 #ifdef __PCL_QT_INTERFACE
2406  GenericRectangle& operator -=( const QPoint& p ) noexcept
2407  {
2408  component dx = component( p.x() ), dy = component( p.y() );
2409  x0 -= dx;
2410  y0 -= dy;
2411  x1 -= dx;
2412  y1 -= dy;
2413  return *this;
2414  }
2415 #endif
2416 
2429  template <typename T1>
2430  GenericRectangle& operator *=( const GenericRectangle<T1>& r ) noexcept
2431  {
2432  x0 *= component( r.x0 );
2433  y0 *= component( r.y0 );
2434  x1 *= component( r.x1 );
2435  y1 *= component( r.y1 );
2436  return *this;
2437  }
2438 
2453  template <typename T1>
2454  GenericRectangle& operator *=( const pcl::GenericPoint<T1>& p ) noexcept
2455  {
2456  x0 *= component( p.x );
2457  y0 *= component( p.y );
2458  x1 *= component( p.x );
2459  y1 *= component( p.y );
2460  return *this;
2461  }
2462 
2477  GenericRectangle& operator *=( component d ) noexcept
2478  {
2479  x0 *= d;
2480  y0 *= d;
2481  x1 *= d;
2482  y1 *= d;
2483  return *this;
2484  }
2485 
2486 #ifdef __PCL_QT_INTERFACE
2487  GenericRectangle& operator *=( const QPoint& p ) noexcept
2488  {
2489  component dx = component( p.x() ), dy = component( p.y() );
2490  x0 *= dx; y0 *= dy; x1 *= dx; y1 *= dy;
2491  return *this;
2492  }
2493 #endif
2494 
2507  template <typename T1>
2508  GenericRectangle& operator /=( const GenericRectangle<T1>& r ) noexcept
2509  {
2510  PCL_PRECONDITION( component( r.x0 ) != component( 0 ) && component( r.y0 ) != component( 0 ) &&
2511  component( r.x1 ) != component( 0 ) && component( r.y1 ) != component( 0 ) )
2512  x0 /= component( r.x0 );
2513  y0 /= component( r.y0 );
2514  x1 /= component( r.x1 );
2515  y1 /= component( r.y1 );
2516  return *this;
2517  }
2518 
2533  template <typename T1>
2534  GenericRectangle& operator /=( const pcl::GenericPoint<T1>& p ) noexcept
2535  {
2536  PCL_PRECONDITION( component( p.x ) != component( 0 ) && component( p.y ) != component( 0 ) )
2537  x0 /= component( p.x );
2538  y0 /= component( p.y );
2539  x1 /= component( p.x );
2540  y1 /= component( p.y );
2541  return *this;
2542  }
2543 
2558  GenericRectangle& operator /=( component d ) noexcept
2559  {
2560  PCL_PRECONDITION( d != component( 0 ) )
2561  x0 /= d; y0 /= d; x1 /= d; y1 /= d;
2562  return *this;
2563  }
2564 
2565 #ifdef __PCL_QT_INTERFACE
2566  GenericRectangle& operator /=( const QPoint& p ) noexcept
2567  {
2568  PCL_PRECONDITION( component( p.x() ) != component( 0 ) && component( p.y() ) != component( 0 ) )
2569  component dx = component( p.x() ), dy = component( p.y() );
2570  x0 /= dx;
2571  y0 /= dy;
2572  x1 /= dx;
2573  y1 /= dy;
2574  return *this;
2575  }
2576 #endif
2577 
2581  GenericRectangle operator +() const noexcept
2582  {
2583  return *this;
2584  }
2585 
2592  GenericRectangle operator -() const noexcept
2593  {
2594  return GenericRectangle( -x0, -y0, -x1, -y1 );
2595  }
2596 
2597 #ifdef __PCL_QT_INTERFACE
2598  operator QRect() const noexcept
2599  {
2600  return QRect( int( x0 ), int( y0 ), int( x1-x0 ), int( y1-y0 ) );
2601  }
2602 #endif
2603 
2604 #ifdef __PCL_QT_INTERFACE
2605 # ifndef __PCL_QT_NO_RECT_DRAWING_HELPERS
2606 
2607  void Draw( QPainter& p, const QBrush* b ) const
2608  {
2609  int rx0, ry0, rx1, ry1;
2610 
2611  if ( x0 <= x1 )
2612  rx0 = x0, rx1 = x1;
2613  else
2614  rx0 = x1, rx1 = x0;
2615 
2616  if ( y0 <= y1 )
2617  ry0 = y0, ry1 = y1;
2618  else
2619  ry0 = y1, ry1 = y0;
2620 
2621  if ( rx1 - rx0 <= 1 )
2622  {
2623  if ( ry1 - ry0 <= 1 )
2624  p.drawPoint( rx0, ry0 );
2625  else
2626  p.drawLine( rx0, ry0, rx0, ry1-1 );
2627  }
2628  else if ( ry1 - ry0 <= 1 )
2629  {
2630  p.drawLine( rx0, ry0, rx1-1, ry0 );
2631  }
2632  else
2633  {
2634 # if ( QT_VERSION >= 0x040000 )
2635  int w = rx1-rx0-1, h = ry1-ry0-1;
2636 # else
2637  int w = rx1-rx0, h = ry1-ry0;
2638 # endif
2639  if ( b != 0 )
2640  p.fillRect( rx0, ry0, w, h, *b );
2641  p.drawRect( rx0, ry0, w, h );
2642  }
2643  }
2644 
2645  void Draw( QPainter& p ) const
2646  {
2647  Draw( p, 0 );
2648  }
2649 
2650  void Draw( QPainter& p, const QColor& c ) const
2651  {
2652  QBrush b( c );
2653  Draw( p, &b );
2654  }
2655 
2656 # endif // !__PCL_QT_NO_RECT_DRAWING_HELPERS
2657 #endif // __PCL_QT_INTERFACE
2658 
2659 }; // GenericRectangle<T>
2660 
2661 #undef PCL_ASSERT_RECT_SIZE
2662 
2663 // ----------------------------------------------------------------------------
2664 
2674 template <typename T1, typename T2> inline
2675 bool operator ==( const GenericRectangle<T1>& r1, const GenericRectangle<T2>& r2 ) noexcept
2676 {
2677  return r1.x0 == r2.x0 && r1.y0 == r2.y0 && r1.x1 == r2.x1 && r1.y1 == r2.y1;
2678 }
2679 
2685 template <typename T> inline
2686 bool operator ==( const GenericRectangle<T>& r1, T d2 ) noexcept
2687 {
2688  return r1.x0 == d2 && r1.y0 == d2 && r1.x1 == d2 && r1.y1 == d2;
2689 }
2690 
2697 template <typename T> inline
2698 bool operator ==( T d1, const GenericRectangle<T>& r2 ) noexcept
2699 {
2700  return d1 == r2.x0 && d1 == r2.y0 && d1 == r2.x1 && d1 == r2.y1;
2701 }
2702 
2709 template <typename T1, typename T2> inline
2710 bool operator <( const GenericRectangle<T1>& r1, const GenericRectangle<T2>& r2 ) noexcept
2711 {
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 );
2716  if ( y01 != y02 )
2717  return y01 < y02;
2718  if ( x01 != x02 )
2719  return x01 < x02;
2720  if ( y11 != y12 )
2721  return y11 < y12;
2722  return x11 < x12;
2723 }
2724 
2740 template <typename T1, typename T2> inline
2742 {
2743  return GenericRectangle<T1>( T1( r1.x0 + r2.x0 ), T1( r1.y0 + r2.y0 ),
2744  T1( r1.x1 + r2.x1 ), T1( r1.y1 + r2.y1 ) );
2745 }
2746 
2761 template <typename T1, typename T2> inline
2763 {
2764  return GenericRectangle<T1>( T1( r1.x0 + p2.x ), T1( r1.y0 + p2.y ),
2765  T1( r1.x1 + p2.x ), T1( r1.y1 + p2.y ) );
2766 }
2767 
2777 template <typename T1, typename T2> inline
2779 {
2780  return GenericRectangle<T2>( T2( p1.x + r2.x0 ), T2( p1.y + r2.y0 ),
2781  T2( p1.x + r2.x1 ), T2( p1.y + r2.y1 ) );
2782 }
2783 
2798 template <typename T> inline
2800 {
2801  return GenericRectangle<T>( r1.x0+d2, r1.y0+d2, r1.x1+d2, r1.y1+d2 );
2802 }
2803 
2813 template <typename T> inline
2815 {
2816  return GenericRectangle<T>( d1+r2.x0, d1+r2.y0, d1+r2.x1, d1+r2.y1 );
2817 }
2818 
2834 template <typename T1, typename T2> inline
2836 {
2837  return GenericRectangle<T1>( T1( r1.x0 - r2.x0 ), T1( r1.y0 - r2.y0 ),
2838  T1( r1.x1 - r2.x1 ), T1( r1.y1 - r2.y1 ) );
2839 }
2840 
2855 template <typename T1, typename T2> inline
2857 {
2858  return GenericRectangle<T1>( T1( r1.x0 - p2.x ), T1( r1.y0 - p2.y ),
2859  T1( r1.x1 - p2.x ), T1( r1.y1 - p2.y ) );
2860 }
2861 
2876 template <typename T1, typename T2> inline
2878 {
2879  return GenericRectangle<T2>( T2( p1.x - r2.x0 ), T2( p1.y - r2.y0 ),
2880  T2( p1.x - r2.x1 ), T2( p1.y - r2.y1 ) );
2881 }
2882 
2897 template <typename T> inline
2899 {
2900  return GenericRectangle<T>( r1.x0-d2, r1.y0-d2, r1.x1-d2, r1.y1-d2 );
2901 }
2902 
2917 template <typename T> inline
2919 {
2920  return GenericRectangle<T>( d1-r2.x0, d1-r2.y0, d1-r2.x1, d1-r2.y1 );
2921 }
2922 
2938 template <typename T1, typename T2> inline
2940 {
2941  return GenericRectangle<T1>( T1( r1.x0 * r2.x0 ), T1( r1.y0 * r2.y0 ),
2942  T1( r1.x1 * r2.x1 ), T1( r1.y1 * r2.y1 ) );
2943 }
2944 
2959 template <typename T1, typename T2> inline
2961 {
2962  return GenericRectangle<T1>( T1( r1.x0 * p2.x ), T1( r1.y0 * p2.y ),
2963  T1( r1.x1 * p2.x ), T1( r1.y1 * p2.y ) );
2964 }
2965 
2975 template <typename T1, typename T2> inline
2977 {
2978  return GenericRectangle<T2>( T2( p1.x * r2.x0 ), T2( p1.y * r2.y0 ),
2979  T2( p1.x * r2.x1 ), T2( p1.y * r2.y1 ) );
2980 }
2981 
2996 template <typename T> inline
2998 {
2999  return GenericRectangle<T>( r1.x0*d2, r1.y0*d2, r1.x1*d2, r1.y1*d2 );
3000 }
3001 
3011 template <typename T> inline
3013 {
3014  return GenericRectangle<T>( d1*r2.x0, d1*r2.y0, d1*r2.x1, d1*r2.y1 );
3015 }
3016 
3032 template <typename T1, typename T2> inline
3034 {
3035  PCL_PRECONDITION( r2.x0 != T2( 0 ) && r2.y0 != T2( 0 ) &&
3036  r2.x1 != T2( 0 ) && r2.y1 != T2( 0 ) )
3037  return GenericRectangle<T1>( T1( r1.x0 / r2.x0 ), T1( r1.y0 / r2.y0 ),
3038  T1( r1.x1 / r2.x1 ), T1( r1.y1 / r2.y1 ) );
3039 }
3040 
3055 template <typename T1, typename T2> inline
3057 {
3058  PCL_PRECONDITION( p2.x != T2( 0 ) && p2.y != T2( 0 ) )
3059  return GenericRectangle<T1>( T1( r1.x0 / p2.x ), T1( r1.y0 / p2.y ),
3060  T1( r1.x1 / p2.x ), T1( r1.y1 / p2.y ) );
3061 }
3062 
3077 template <typename T1, typename T2> inline
3079 {
3080  PCL_PRECONDITION( r2.x0 != T2( 0 ) && r2.y0 != T2( 0 ) &&
3081  r2.x1 != T2( 0 ) && r2.y1 != T2( 0 ) )
3082  return GenericRectangle<T2>( T2( p1.x / r2.x0 ), T2( p1.y / r2.y0 ),
3083  T2( p1.x / r2.x1 ), T2( p1.y / r2.y1 ) );
3084 }
3085 
3100 template <typename T> inline
3102 {
3103  PCL_PRECONDITION( d2 != T( 0 ) )
3104  return GenericRectangle<T>( r1.x0/d2, r1.y0/d2, r1.x1/d2, r1.y1/d2 );
3105 }
3106 
3121 template <typename T> inline
3123 {
3124  PCL_PRECONDITION( r2.x0 != T( 0 ) && r2.y0 != T( 0 ) &&
3125  r2.x1 != T( 0 ) && r2.y1 != T( 0 ) )
3126  return GenericRectangle<T>( d1/r2.x0, d1/r2.y0, d1/r2.x1, d1/r2.y1 );
3127 }
3128 
3144 template <typename T, typename T1, typename T2> inline
3145 void Rotate( GenericRectangle<T>& r, T1 a, T2 xc, T2 yc ) noexcept
3146 {
3147  T1 sa, ca; pcl::SinCos( a, sa, ca );
3148  pcl::Rotate( r.x0, r.y0, sa, ca, xc, yc );
3149  pcl::Rotate( r.x1, r.y1, sa, ca, xc, yc );
3150 }
3151 
3167 template <typename T, typename T1, typename T2> inline
3168 void Rotate( GenericRectangle<T>& r, T1 a, const GenericPoint<T2>& c ) noexcept
3169 {
3170  pcl::Rotate( r, a, c.x, c.y );
3171 }
3172 
3188 template <typename T, typename T1, typename T2> inline
3189 void Rotate( GenericRectangle<T>& r, T1 sa, T1 ca, T2 xc, T2 yc ) noexcept
3190 {
3191  pcl::Rotate( r.x0, r.y0, sa, ca, xc, yc );
3192  pcl::Rotate( r.x1, r.y1, sa, ca, xc, yc );
3193 }
3194 
3210 template <typename T, typename T1, typename T2> inline
3211 void Rotate( GenericRectangle<T>& r, T1 sa, T1 ca, const GenericPoint<T2>& c ) noexcept
3212 {
3213  pcl::Rotate( r, sa, ca, c.x, c.y );
3214 }
3215 
3227 template <typename T> inline
3229 {
3230  pcl::Swap( r1.x0, r2.x0 ); pcl::Swap( r1.y0, r2.y0 );
3231  pcl::Swap( r1.x1, r2.x1 ); pcl::Swap( r1.y1, r2.y1 );
3232 }
3233 
3234 // ----------------------------------------------------------------------------
3235 
3236 #ifndef __PCL_NO_RECT_INSTANTIATE
3237 
3249 using I32Rect = GenericRectangle<int32>;
3250 
3259 using Rect = I32Rect;
3260 
3268 using F32Rect = GenericRectangle<float>;
3269 
3278 using FRect = F32Rect;
3279 
3287 using F64Rect = GenericRectangle<double>;
3288 
3297 using DRect = F64Rect;
3298 
3299 #endif
3300 
3301 // ----------------------------------------------------------------------------
3302 
3303 } // pcl
3304 
3305 #endif // __PCL_Rectangle_h
3306 
3307 // ----------------------------------------------------------------------------
3308 // EOF pcl/Rectangle.h - Released 2025-02-21T12:13:32Z
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.
Definition: Flags.h:85
A generic point in the two-dimensional space.
Definition: Point.h:100
A generic rectangle in the two-dimensional space.
Definition: Rectangle.h:316
point BottomRight() const noexcept
Definition: Rectangle.h:588
GenericRectangle Truncated() const noexcept
Definition: Rectangle.h:2187
GenericRectangle(const pcl::GenericPoint< T1 > &leftTop, const pcl::GenericPoint< T1 > &rightBottom)
Definition: Rectangle.h:427
bool IsPointOrLine() const noexcept
Definition: Rectangle.h:766
component Left() const noexcept
Definition: Rectangle.h:493
constexpr GenericRectangle(component d)
Definition: Rectangle.h:455
void MoveBy(const pcl::GenericPoint< T1 > &d) noexcept
Definition: Rectangle.h:1630
void SetWidth(T1 w) noexcept
Definition: Rectangle.h:1788
GenericRectangle Rotated(T1 angle, const GenericPoint< T2 > &center) const noexcept
Definition: Rectangle.h:2075
void Round() noexcept
Definition: Rectangle.h:2114
component Perimeter() const noexcept
Definition: Rectangle.h:655
double CenterY() const noexcept
Definition: Rectangle.h:705
constexpr GenericRectangle(T1 left, T1 top, T1 right, T1 bottom)
Definition: Rectangle.h:359
GenericRectangle IntersectionFast(const GenericRectangle< T1 > &r) const noexcept
Definition: Rectangle.h:1507
bool IntersectsFast(const pcl::GenericRectangle< T1 > &r) const noexcept
Definition: Rectangle.h:1223
ClipFlags ClipCodeFast(const pcl::GenericPoint< T1 > &p) const noexcept
Definition: Rectangle.h:908
void Round(int n) noexcept
Definition: Rectangle.h:2126
point LeftTop() const noexcept
Definition: Rectangle.h:529
void UniteFast(T1 left, T1 top, T1 right, T1 bottom) noexcept
Definition: Rectangle.h:1312
component x1
Horizontal coordinate of the lower right corner.
Definition: Rectangle.h:336
void Unite(T1 left, T1 top, T1 right, T1 bottom) noexcept
Definition: Rectangle.h:1249
GenericRectangle Rounded(int n) const noexcept
Definition: Rectangle.h:2151
void MoveTo(T1 x, T1 y) noexcept
Definition: Rectangle.h:1581
GenericRectangle InflatedByFactors(double kx, double ky) noexcept
Definition: Rectangle.h:1902
point RightTop() const noexcept
Definition: Rectangle.h:546
bool Intersect(T1 left, T1 top, T1 right, T1 bottom) noexcept
Definition: Rectangle.h:1405
double CenterX() const noexcept
Definition: Rectangle.h:696
bool IsOrdered() const noexcept
Definition: Rectangle.h:791
component Area() const noexcept
Definition: Rectangle.h:676
void MoveBy(T1 dx, T1 dy) noexcept
Definition: Rectangle.h:1641
GenericRectangle InflatedBy(T1 dx, T1 dy) const noexcept
Definition: Rectangle.h:1855
component Bottom() const noexcept
Definition: Rectangle.h:520
GenericRectangle InflatedBy(T1 d) const noexcept
Definition: Rectangle.h:1867
point CenterLeft() const noexcept
Definition: Rectangle.h:620
void InflateBy(T1 d) noexcept
Definition: Rectangle.h:1837
constexpr GenericRectangle(component width, component height)
Definition: Rectangle.h:442
void DeflateBy(T1 d) noexcept
Definition: Rectangle.h:1945
component y1
Vertical coordinate of the lower right corner.
Definition: Rectangle.h:337
point TopLeft() const noexcept
Definition: Rectangle.h:537
point Center() const noexcept
Definition: Rectangle.h:596
point LeftBottom() const noexcept
Definition: Rectangle.h:563
size_type IntegerArea() const
Definition: Rectangle.h:687
void InflateBy(T1 dx, T1 dy) noexcept
Definition: Rectangle.h:1819
point CenterBottom() const noexcept
Definition: Rectangle.h:612
bool IsRect() const noexcept
Definition: Rectangle.h:775
GenericRectangle InflatedByFactor(double k) noexcept
Definition: Rectangle.h:1914
bool IsVerticalLine() const noexcept
Definition: Rectangle.h:758
GenericRectangle Rotated(T1 sa, T1 ca, const GenericPoint< T2 > &center) const noexcept
Definition: Rectangle.h:2103
void InflateByFactors(double kx, double ky) noexcept
Definition: Rectangle.h:1881
bool IsHorizontalLine() const noexcept
Definition: Rectangle.h:750
GenericRectangle Rotated(T1 sa, T1 ca, T2 xc, T2 yc) const noexcept
Definition: Rectangle.h:2089
GenericRectangle< int > RoundedToInt() const noexcept
Definition: Rectangle.h:2162
GenericRectangle< int > TruncatedToInt() const noexcept
Definition: Rectangle.h:2199
point RightBottom() const noexcept
Definition: Rectangle.h:580
bool ClipLineFast(pcl::GenericPoint< T1 > &p0, pcl::GenericPoint< T1 > &p1) const noexcept
Definition: Rectangle.h:1084
void ResizeTo(T1 w, T1 h) noexcept
Definition: Rectangle.h:1713
bool IsNormal() const noexcept
Definition: Rectangle.h:783
component y0
Vertical coordinate of the upper left corner.
Definition: Rectangle.h:335
bool IntersectsFast(T1 left, T1 top, T1 right, T1 bottom) const noexcept
Definition: Rectangle.h:1211
bool Includes(T1 x, T1 y) const noexcept
Definition: Rectangle.h:1094
component x0
Horizontal coordinate of the upper left corner.
Definition: Rectangle.h:334
ClipFlags ClipCodeFast(T1 x, T1 y) const noexcept
Definition: Rectangle.h:884
void Set(T1 left, T1 top, T1 right, T1 bottom) noexcept
Definition: Rectangle.h:1552
GenericRectangle Rotated(T1 angle, T2 xc, T2 yc) const noexcept
Definition: Rectangle.h:2062
GenericRectangle MovedTo(const pcl::GenericPoint< T1 > &p) const noexcept
Definition: Rectangle.h:1604
void DeflateBy(T1 dx, T1 dy) noexcept
Definition: Rectangle.h:1927
point CenterTop() const noexcept
Definition: Rectangle.h:604
GenericRectangle ResizedBy(T1 dw, T1 dh) const noexcept
Definition: Rectangle.h:1772
void UniteFast(const GenericRectangle< T1 > &r) noexcept
Definition: Rectangle.h:1287
void Rotate(T1 sa, T1 ca, T2 xc, T2 yc) noexcept
Definition: Rectangle.h:2039
void InflateByFactor(double k) noexcept
Definition: Rectangle.h:1892
GenericRectangle UnionFast(const GenericRectangle< T1 > &r) const noexcept
Definition: Rectangle.h:1338
bool Intersects(const pcl::GenericRectangle< T1 > &r) const noexcept
Definition: Rectangle.h:1179
ClipFlags ClipCode(T1 x, T1 y) const noexcept
Definition: Rectangle.h:825
void Order() noexcept
Definition: Rectangle.h:799
GenericRectangle HeightSetTo(T1 h) const noexcept
Definition: Rectangle.h:2003
bool ClipLine(pcl::GenericPoint< T1 > &p0, pcl::GenericPoint< T1 > &p1) const noexcept
Definition: Rectangle.h:994
component Right() const noexcept
Definition: Rectangle.h:511
GenericRectangle MovedBy(T1 dx, T1 dy) const noexcept
Definition: Rectangle.h:1695
bool Includes(const GenericRectangle< T1 > &r) const noexcept
Definition: Rectangle.h:1113
bool Includes(const pcl::GenericPoint< T1 > &p) const noexcept
Definition: Rectangle.h:1104
point CenterRight() const noexcept
Definition: Rectangle.h:628
GenericRectangle ResizedTo(T1 w, T1 h) const noexcept
Definition: Rectangle.h:1733
bool IntersectFast(const GenericRectangle< T1 > &r) noexcept
Definition: Rectangle.h:1449
void Unite(const GenericRectangle< T1 > &r) noexcept
Definition: Rectangle.h:1233
bool ClipLineFast(T1 &lx0, T1 &ly0, T1 &lx1, T1 &ly1) const noexcept
Definition: Rectangle.h:1020
bool IncludesFast(const pcl::GenericPoint< T1 > &p) const noexcept
Definition: Rectangle.h:1152
bool IntersectFast(T1 left, T1 top, T1 right, T1 bottom) noexcept
Definition: Rectangle.h:1478
void Rotate(T1 angle, T2 xc, T2 yc) noexcept
Definition: Rectangle.h:2016
void ResizeBy(T1 dw, T1 dh) noexcept
Definition: Rectangle.h:1752
double Hypot() const noexcept
Definition: Rectangle.h:716
bool IsPoint() const noexcept
Definition: Rectangle.h:734
void Rotate(T1 angle, const GenericPoint< T2 > &center) noexcept
Definition: Rectangle.h:2028
void MoveTo(const pcl::GenericPoint< T1 > &p) noexcept
Definition: Rectangle.h:1568
GenericRectangle DeflatedBy(T1 d) const noexcept
Definition: Rectangle.h:1975
bool Intersect(const GenericRectangle< T1 > &r) noexcept
Definition: Rectangle.h:1385
GenericRectangle DeflatedBy(T1 dx, T1 dy) const noexcept
Definition: Rectangle.h:1963
GenericRectangle(std::initializer_list< T1 > l)
Definition: Rectangle.h:394
point TopRight() const noexcept
Definition: Rectangle.h:554
point BottomLeft() const noexcept
Definition: Rectangle.h:571
ClipFlags ClipCode(const pcl::GenericPoint< T1 > &p) const noexcept
Definition: Rectangle.h:864
component ManhattanDistance() const noexcept
Definition: Rectangle.h:667
GenericRectangle(const GenericRectangle< T1 > &r)
Definition: Rectangle.h:466
constexpr GenericRectangle()
Definition: Rectangle.h:343
GenericRectangle Union(const GenericRectangle< T1 > &r) const noexcept
Definition: Rectangle.h:1324
GenericRectangle Ordered() const noexcept
Definition: Rectangle.h:807
component Top() const noexcept
Definition: Rectangle.h:502
component Width() const noexcept
Definition: Rectangle.h:637
bool IncludesFast(T1 x, T1 y) const noexcept
Definition: Rectangle.h:1139
GenericRectangle MovedBy(const pcl::GenericPoint< T1 > &d) const noexcept
Definition: Rectangle.h:1681
GenericRectangle MovedTo(T1 x, T1 y) const noexcept
Definition: Rectangle.h:1618
component Height() const noexcept
Definition: Rectangle.h:646
void MoveBy(T1 dxy) noexcept
Definition: Rectangle.h:1659
void SetHeight(T1 h) noexcept
Definition: Rectangle.h:1805
double Diagonal() const noexcept
Definition: Rectangle.h:726
GenericRectangle Intersection(const GenericRectangle< T1 > &r) const noexcept
Definition: Rectangle.h:1492
void Truncate() noexcept
Definition: Rectangle.h:2173
GenericRectangle Rounded() const noexcept
Definition: Rectangle.h:2141
bool ClipLine(T1 &lx0, T1 &ly0, T1 &lx1, T1 &ly1) const noexcept
Definition: Rectangle.h:930
GenericRectangle WidthSetTo(T1 w) const noexcept
Definition: Rectangle.h:1989
void Rotate(T1 sa, T1 ca, const GenericPoint< T2 > &center) noexcept
Definition: Rectangle.h:2051
bool IsLine() const noexcept
Definition: Rectangle.h:742
bool Intersects(T1 left, T1 top, T1 right, T1 bottom) const noexcept
Definition: Rectangle.h:1168
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
Definition: Array.h:2285
bool operator<(const Array< T, A > &x1, const Array< T, A > &x2) noexcept
Definition: Array.h:2296
Complex< T1 > operator-(const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept
Definition: Complex.h:518
Complex< T1 > operator*(const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept
Definition: Complex.h:562
Complex< T1 > operator+(const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept
Definition: Complex.h:478
Complex< T1 > operator/(const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept
Definition: Complex.h:606
Complex< T > Sqrt(const Complex< T > &c) noexcept
Definition: Complex.h:688
T Abs(const Complex< T > &c) noexcept
Definition: Complex.h:443
Complex< T > Round(const Complex< T > &c) noexcept
Definition: Complex.h:952
void SinCos(T x, T &sx, T &cx) noexcept
Definition: Math.h:1101
void Rotate(T &x, T &y, T1 sa, T1 ca, T2 xc, T2 yc) noexcept
Definition: Math.h:2055
T Trunc(T x) noexcept
Definition: Math.h:1166
int RoundInt(T x) noexcept
Definition: Math.h:1550
int TruncInt(T x) noexcept
Definition: Math.h:1203
void Swap(GenericPoint< T > &p1, GenericPoint< T > &p2) noexcept
Definition: Point.h:1459
bool IsHorizontalLine(T x0, T y0, T x1, T y1) noexcept
Definition: Rectangle.h:161
bool IsNormalRect(T x0, T y0, T x1, T y1) noexcept
Definition: Rectangle.h:228
bool IsRect(T x0, T y0, T x1, T y1) noexcept
Definition: Rectangle.h:212
bool IsOrderedRect(T x0, T y0, T x1, T y1) noexcept
Definition: Rectangle.h:245
bool IsLine(T x0, T y0, T x1, T y1) noexcept
Definition: Rectangle.h:144
bool IsVerticalLine(T x0, T y0, T x1, T y1) noexcept
Definition: Rectangle.h:178
bool IsPointOrLine(T x0, T y0, T x1, T y1) noexcept
Definition: Rectangle.h:195
bool IsPoint(T x0, T y0, T x1, T y1) noexcept
Definition: Rectangle.h:126
void OrderRect(T &x0, T &y0, T &x1, T &y1) noexcept
Definition: Rectangle.h:262
size_t size_type
Definition: Defs.h:609
constexpr const T & Min(const T &a, const T &b) noexcept
Definition: Utility.h:90
constexpr const T & Max(const T &a, const T &b) noexcept
Definition: Utility.h:119
PCL root namespace.
Definition: AbstractImage.h:77