diff options
author | Valerio Virgillito | 2012-05-04 15:31:40 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-04 15:31:40 -0700 |
commit | 3ebed34665fa73b0ce613b400f3029ebf4476439 (patch) | |
tree | 09a3c592035030bda7bb62d1f908ce263377d74c /js/tools/drawing-tool-base.js | |
parent | 8dcbac5d4c30e9dfbc543a5f997939111e9c9f89 (diff) | |
parent | 526e423e4a2734c2b139af23911e912452a4443f (diff) | |
download | ninja-3ebed34665fa73b0ce613b400f3029ebf4476439.tar.gz |
Merge branch 'refs/heads/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 | ||