Code

disable empty enforcement for now
authormental <mental@users.sourceforge.net>
Sun, 11 Mar 2007 23:12:38 +0000 (23:12 +0000)
committermental <mental@users.sourceforge.net>
Sun, 11 Mar 2007 23:12:38 +0000 (23:12 +0000)
src/libnr/nr-rect.cpp

index a9487045a11b05a4a4b52c69c62eb184430d7e49..d4ba14e1aabb309affe52c70ff2ed705fb6eef56 100644 (file)
@@ -246,9 +246,11 @@ Rect::Rect(const Point &p0, const Point &p1)
 : _min(std::min(p0[X], p1[X]), std::min(p0[Y], p1[Y])),
   _max(std::max(p0[X], p1[X]), std::max(p0[Y], p1[Y]))
 {
+    if (0) {
     if ( _min[X] == _max[X] || _min[Y] == _max[Y] ) {
         throw EmptyRectangle();
     }
+    }
 }
 
 /** returns the four corners of the rectangle in the correct winding order */