We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebe5333 commit 350413cCopy full SHA for 350413c
src/_backend_agg.cpp
@@ -769,10 +769,10 @@ RendererAgg::draw_markers(const Py::Tuple& args)
769
agg::serialized_scanlines_adaptor_aa8::embedded_scanline sl;
770
771
agg::rect_d clipping_rect(
772
- -(scanlines.min_x() + 1.0),
773
- (scanlines.max_y() + 1.0),
774
- width + scanlines.max_x() + 1.0,
775
- height - scanlines.min_y() + 1.0);
+ -1.0 - scanlines.max_x(),
+ -1.0 - scanlines.max_y(),
+ 1.0 + width - scanlines.min_x(),
+ 1.0 + height - scanlines.min_y());
776
777
if (has_clippath)
778
{
0 commit comments