diff options
author | Nivesh Rajbhandari | 2012-05-04 15:33:29 -0700 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-05-04 15:33:29 -0700 |
commit | ad94ec51c81badeba2b0f870cad8a0eec7878ebd (patch) | |
tree | 35c52d44d2c5399ea4019582af3fb55a53ee05c8 /js/tools/drawing-tool-base.js | |
parent | 3ad9024bcfce76e28816daa02bac14fc8985ca62 (diff) | |
parent | 3ebed34665fa73b0ce613b400f3029ebf4476439 (diff) | |
download | ninja-ad94ec51c81badeba2b0f870cad8a0eec7878ebd.tar.gz |
Merge branch 'refs/heads/dom-architecture-master' into Dom-Architecture
Diffstat (limited to 'js/tools/drawing-tool-base.js')
-rwxr-xr-x | js/tools/drawing-tool-base.js | 24 |
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 | ||