diff options
author | Pushkar Joshi | 2012-02-01 13:21:11 -0800 |
---|---|---|
committer | Pushkar Joshi | 2012-02-01 13:21:11 -0800 |
commit | 62d38a080b2918a0284c854e9bf882bfeeea1e0b (patch) | |
tree | 9d9b112796e200415fbfb28f4ef9557b7d67c81f /js/helper-classes | |
parent | ada488781ff815a827e7f5903f2c55773e3be0f3 (diff) | |
download | ninja-62d38a080b2918a0284c854e9bf882bfeeea1e0b.tar.gz |
avoid overriding GlGeomObj translate method
Diffstat (limited to 'js/helper-classes')
-rw-r--r-- | js/helper-classes/RDGE/GLSubpath.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/helper-classes/RDGE/GLSubpath.js b/js/helper-classes/RDGE/GLSubpath.js index 9b6ae917..52699f85 100644 --- a/js/helper-classes/RDGE/GLSubpath.js +++ b/js/helper-classes/RDGE/GLSubpath.js | |||
@@ -578,7 +578,7 @@ GLSubpath.prototype.copyFromSubpath = function (subpath) { | |||
578 | this.setStrokeWidth(subpath.getStrokeWidth()); | 578 | this.setStrokeWidth(subpath.getStrokeWidth()); |
579 | } | 579 | } |
580 | 580 | ||
581 | GLSubpath.prototype.translate = function (tx, ty, tz) { | 581 | GLSubpath.prototype.translateAnchors = function (tx, ty, tz) { |
582 | for (var i=0;i<this._Anchors.length;i++){ | 582 | for (var i=0;i<this._Anchors.length;i++){ |
583 | this._Anchors[i].translateAll(tx,ty,tz); | 583 | this._Anchors[i].translateAll(tx,ty,tz); |
584 | } | 584 | } |