diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2016-05-21 22:13:06 +0000 |
|---|---|---|
| committer | jabiertxof <info@marker.es> | 2016-05-21 22:13:06 +0000 |
| commit | eef0bdfef0bdbaa00c17067c601061d905974096 (patch) | |
| tree | 737c7efb116ec01e23e8d21ae9f9acc92923c708 /src/2geom | |
| parent | Fixing undo thing (diff) | |
| parent | Remove duplicated code (diff) | |
| download | inkscape-eef0bdfef0bdbaa00c17067c601061d905974096.tar.gz inkscape-eef0bdfef0bdbaa00c17067c601061d905974096.zip | |
update to trunk
(bzr r14865.1.6)
Diffstat (limited to 'src/2geom')
| -rw-r--r-- | src/2geom/elliptical-arc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/elliptical-arc.cpp b/src/2geom/elliptical-arc.cpp index a0e379a21..ec62b4be2 100644 --- a/src/2geom/elliptical-arc.cpp +++ b/src/2geom/elliptical-arc.cpp @@ -570,13 +570,13 @@ void EllipticalArc::_filterIntersections(std::vector<ShapeIntersection> &xs, boo std::vector<ShapeIntersection>::reverse_iterator i = xs.rbegin(), last = xs.rend(); while (i != last) { Coord &t = is_first ? i->first : i->second; - assert(are_near(_ellipse.pointAt(t), i->point(), 1e-6)); + assert(are_near(_ellipse.pointAt(t), i->point(), 1e-5)); t = timeAtAngle(t); if (!unit.contains(t)) { xs.erase((++i).base()); continue; } else { - assert(are_near(pointAt(t), i->point(), 1e-6)); + assert(are_near(pointAt(t), i->point(), 1e-5)); ++i; } } |
