diff options
Diffstat (limited to 'js/tools/PenTool.js')
-rwxr-xr-x | js/tools/PenTool.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/tools/PenTool.js b/js/tools/PenTool.js index aba25ca9..7bc0364e 100755 --- a/js/tools/PenTool.js +++ b/js/tools/PenTool.js | |||
@@ -743,7 +743,7 @@ exports.PenTool = Montage.create(ShapeTool, { | |||
743 | //this transformation will take the path points from local space to stage world space | 743 | //this transformation will take the path points from local space to stage world space |
744 | // *without* taking into account the transformation applied to this canvas | 744 | // *without* taking into account the transformation applied to this canvas |
745 | // (this is because we use the center of the bbox to find a place for the canvas) | 745 | // (this is because we use the center of the bbox to find a place for the canvas) |
746 | var localToStageWorldMat = ViewUtils.getLocalToStageWorldMatrix(this._selectedSubpathCanvas, true, false); | 746 | var localToStageWorldMat = ViewUtils.getObjToStageWorldMatrix(this._selectedSubpathCanvas, false);//ViewUtils.getLocalToStageWorldMatrix(this._selectedSubpathCanvas, true, false); |
747 | for (i=0;i<numAnchors;i++){ | 747 | for (i=0;i<numAnchors;i++){ |
748 | //convert this anchor from local to stage world | 748 | //convert this anchor from local to stage world |
749 | var currAnchor = this._selectedSubpath.getAnchor(i); | 749 | var currAnchor = this._selectedSubpath.getAnchor(i); |
@@ -904,8 +904,6 @@ exports.PenTool = Montage.create(ShapeTool, { | |||
904 | this.DrawSubpathAnchors(this._selectedSubpath); | 904 | this.DrawSubpathAnchors(this._selectedSubpath); |
905 | } | 905 | } |
906 | }, | 906 | }, |
907 | |||
908 | var elementModel = TagTool.makeElement(parseInt(w), parseInt(h), planeMat, midPt, newCanvas, true); | ||
909 | 907 | ||
910 | BuildSecondCtrlPoint:{ | 908 | BuildSecondCtrlPoint:{ |
911 | value: function(p0, p2, p3) { | 909 | value: function(p0, p2, p3) { |