aboutsummaryrefslogtreecommitdiff
path: root/js/tools/drawing-tool-base.js
diff options
context:
space:
mode:
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