aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE/GLSubpath.js
diff options
context:
space:
mode:
authorPushkar Joshi2012-02-01 13:21:11 -0800
committerPushkar Joshi2012-02-01 13:21:11 -0800
commit62d38a080b2918a0284c854e9bf882bfeeea1e0b (patch)
tree9d9b112796e200415fbfb28f4ef9557b7d67c81f /js/helper-classes/RDGE/GLSubpath.js
parentada488781ff815a827e7f5903f2c55773e3be0f3 (diff)
downloadninja-62d38a080b2918a0284c854e9bf882bfeeea1e0b.tar.gz
avoid overriding GlGeomObj translate method
Diffstat (limited to 'js/helper-classes/RDGE/GLSubpath.js')
-rw-r--r--js/helper-classes/RDGE/GLSubpath.js2
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
581GLSubpath.prototype.translate = function (tx, ty, tz) { 581GLSubpath.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 }