summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/presentation_engine.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/svg/presentation_engine.js b/filter/source/svg/presentation_engine.js
index 01c49ef551b2..55b0221c7563 100644
--- a/filter/source/svg/presentation_engine.js
+++ b/filter/source/svg/presentation_engine.js
@@ -9922,14 +9922,14 @@ SweepWipePath.prototype.perform = function( nT ) {
if(!this.bSingle && !this.bOppositeVertical)
nT /= 2.0;
- var aBasePath = PinWheelWipePath.calcCenteredClock( nT + 0.25, 1.0 );
+ var poly = PinWheelWipePath.calcCenteredClock( nT + 0.25, 1.0 );
var aTransform;
if(this.bCenter) {
aTransform = SVGIdentityMatrix.translate(0.5, 0.0);
- aBasePath.matrixTransform(aTransform);
+ poly.matrixTransform(aTransform);
}
- var res = aBasePath;
+ var res = poly;
if(!this.bSingle) {
if(this.bOppositeVertical) {