diff options
-rw-r--r-- | canvas/source/vcl/canvashelper.cxx | 6 | ||||
-rw-r--r-- | slideshow/source/engine/animationfactory.cxx | 5 | ||||
-rw-r--r-- | slideshow/source/engine/slideview.cxx | 5 | ||||
-rw-r--r-- | slideshow/source/engine/transitions/clippingfunctor.cxx | 5 |
4 files changed, 0 insertions, 21 deletions
diff --git a/canvas/source/vcl/canvashelper.cxx b/canvas/source/vcl/canvashelper.cxx index 9f1808c858e7..17930a1a758d 100644 --- a/canvas/source/vcl/canvashelper.cxx +++ b/canvas/source/vcl/canvashelper.cxx @@ -322,12 +322,6 @@ namespace vclcanvas ::basegfx::B2DPolyPolygon aPolyPoly( ::basegfx::unotools::b2DPolyPolygonFromXPolyPolygon2D(xPolyPolygon) ); - if( aPolyPoly.areControlPointsUsed() ) - { - // AW: Not needed for ApplyLineDashing anymore; should be removed - aPolyPoly = ::basegfx::utils::adaptiveSubdivideByAngle(aPolyPoly); - } - // apply dashing, if any if( strokeAttributes.DashArray.hasElements() ) { diff --git a/slideshow/source/engine/animationfactory.cxx b/slideshow/source/engine/animationfactory.cxx index fc5417ffaf8f..4dbcbd02696d 100644 --- a/slideshow/source/engine/animationfactory.cxx +++ b/slideshow/source/engine/animationfactory.cxx @@ -223,11 +223,6 @@ namespace slideshow::internal "PathAnimation::PathAnimation(): failed to parse SVG:d path" ); ENSURE_OR_THROW( aPolyPoly.count() == 1, "PathAnimation::PathAnimation(): motion path consists of multiple/zero polygon(s)" ); - - // TODO(F2): Since getPositionRelative() currently - // cannot handle beziers, have to subdivide. - // AW: Should be no longer necessary; getPositionRelative is now bezier-safe - maPathPoly = ::basegfx::utils::adaptiveSubdivideByAngle(aPolyPoly.getB2DPolygon(0) ); } virtual ~PathAnimation() override diff --git a/slideshow/source/engine/slideview.cxx b/slideshow/source/engine/slideview.cxx index f470b90b81ab..10398f88e13f 100644 --- a/slideshow/source/engine/slideview.cxx +++ b/slideshow/source/engine/slideview.cxx @@ -134,11 +134,6 @@ basegfx::B2DPolyPolygon prepareClip( const basegfx::B2DPolyPolygon& rClip ) { basegfx::B2DPolyPolygon aClip( rClip ); - // TODO(P2): unnecessary, once XCanvas is correctly handling this - // AW: Should be no longer necessary; tools are now bezier-safe - if( aClip.areControlPointsUsed() ) - aClip = basegfx::utils::adaptiveSubdivideByAngle( aClip ); - // normalize polygon, preparation for clipping // in updateCanvas() aClip = basegfx::utils::correctOrientations(aClip); diff --git a/slideshow/source/engine/transitions/clippingfunctor.cxx b/slideshow/source/engine/transitions/clippingfunctor.cxx index ae64b8e6731f..be592ac49b57 100644 --- a/slideshow/source/engine/transitions/clippingfunctor.cxx +++ b/slideshow/source/engine/transitions/clippingfunctor.cxx @@ -154,11 +154,6 @@ namespace slideshow::internal if (mbFlip) aClipPoly.flip(); - // currently, clipper cannot cope with curves. Subdivide first - // AW: Should be no longer necessary; clipping tools are now bezier-safe - // if( aClipPoly.areControlPointsUsed() ) - // aClipPoly = ::basegfx::utils::adaptiveSubdivideByAngle(aClipPoly); - if( mbSubtractPolygon ) { // subtract given polygon from background |