diff options
Diffstat (limited to '')
| -rw-r--r-- | src/2geom/basic-intersection.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/2geom/basic-intersection.cpp b/src/2geom/basic-intersection.cpp index 694760d5a..0d84ee7f3 100644 --- a/src/2geom/basic-intersection.cpp +++ b/src/2geom/basic-intersection.cpp @@ -1,5 +1,7 @@ #include "basic-intersection.h" +unsigned intersect_steps = 0; + using std::vector; namespace Geom { @@ -224,6 +226,7 @@ void recursively_intersect( OldBezier a, double t0, double t1, int deptha, OldBezier b, double u0, double u1, int depthb, std::vector<std::pair<double, double> > ¶meters) { + intersect_steps ++; if( deptha > 0 ) { OldBezier A[2]; |
