aboutsummaryrefslogtreecommitdiff
path: root/js/tools/drawing-tool-base.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-05-07 10:38:04 -0700
committerJose Antonio Marquez2012-05-07 10:38:04 -0700
commit5293ede5f3493900df93da33197416d853f8d907 (patch)
tree3155deaea5616fa09fc96c84567419fec5f288a2 /js/tools/drawing-tool-base.js
parent9c0bda09a502472768f6dd5090a882d11be58d23 (diff)
parent30e837ade2da7cb20caf7c5a69faf0888736bb9a (diff)
downloadninja-5293ede5f3493900df93da33197416d853f8d907.tar.gz
Merge branch 'refs/heads/Ninja-DOM-Architecture' into Document
Diffstat (limited to 'js/tools/drawing-tool-base.js')
-rwxr-xr-xjs/tools/drawing-tool-base.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/js/tools/drawing-tool-base.js b/js/tools/drawing-tool-base.js
index 7d97f105..376b3a27 100755
--- a/js/tools/drawing-tool-base.js
+++ b/js/tools/drawing-tool-base.js
@@ -446,30 +446,6 @@ exports.DrawingToolBase = Montage.create(Montage, {
446 }, 446 },
447 447
448 /** 448 /**
449 * Get the matrix for the actual element being added to the user document.
450 */
451 getElementMatrix: {
452 value: function(planeMat, midPt) {
453 var divMat, flatMat, flatMatSafe;
454 // calculate the matrix for the element.
455 // we should not need to worry about divide by zero below since we snapped to the point
456 divMat = planeMat.slice(0);
457 divMat[12] = 0.0;
458 divMat[13] = 0.0;
459 //divMat[14] = 0.0;
460 divMat[14] = midPt[2];
461
462 // set the left and top of the element such that the center of the rectangle is at the mid point
463 viewUtils.setViewportObj(this.stage);
464
465 flatMat = divMat;
466 flatMatSafe = MathUtils.scientificToDecimal(flatMat, 10);
467
468 return "matrix3d(" + flatMatSafe + ")";
469 }
470 },
471
472 /**
473 * Draw Helper Functions 449 * Draw Helper Functions
474 */ 450 */
475 451