Skip to content

Commit

Permalink
More efficient clipping parameter (same as in threading branch)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@14185 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Sep 3, 2010
1 parent fe9b709 commit dc1c85f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/core/qgsclipper.cpp
Expand Up @@ -25,9 +25,13 @@

// But the static members must be initialised outside the class! (or GCC 4 dies)

const double QgsClipper::MAX_X = 30000;
const double QgsClipper::MIN_X = -30000;
const double QgsClipper::MAX_Y = 30000;
const double QgsClipper::MIN_Y = -30000;
// Qt also does clipping when the coordinates go over +/- 32767
// moreover from Qt 4.6, Qt clips also when the width/height of a painter path
// is more than 32767. Since we want to avoid clipping by Qt (because it is slow)
// we set coordinate limit to less than 32767 / 2
const double QgsClipper::MAX_X = 16000;
const double QgsClipper::MIN_X = -16000;
const double QgsClipper::MAX_Y = 16000;
const double QgsClipper::MIN_Y = -16000;

const double QgsClipper::SMALL_NUM = 1e-12;

0 comments on commit dc1c85f

Please sign in to comment.