diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-06-24 15:31:49 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-06-24 15:31:49 -0400 |
| commit | d52c037ab7e01660a85363a2941052e4d4b8cf03 (patch) | |
| tree | e6209681d09a466dcd1f8d6d1fe0498bacf7dc02 /public/assets/javascripts/environments/tableaux/columns.js | |
| parent | eac88be42cc1a7f85c7a0533414e1047e0addc39 (diff) | |
removing old mx stuff
Diffstat (limited to 'public/assets/javascripts/environments/tableaux/columns.js')
| -rw-r--r-- | public/assets/javascripts/environments/tableaux/columns.js | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/public/assets/javascripts/environments/tableaux/columns.js b/public/assets/javascripts/environments/tableaux/columns.js deleted file mode 100644 index e961315..0000000 --- a/public/assets/javascripts/environments/tableaux/columns.js +++ /dev/null @@ -1,36 +0,0 @@ -MX.Tableaux.Columns = MX.Tableau.extend({ - - init: function (opt) { - - this.opt = opt = defaults(opt, { - width: 10, - height: 10, - depth: 10, - x: 0, - y: 0, - z: 0, - rotationY: 0, - rotationX: 0, - scale: 1, - count: 3, - spacingX: 0, - spacingZ: 100, - }) - - for (var i = 0; i < opt.count; i++) { - var scalebox = new MX.ScaleBox({ - "width": opt.width, - "height": opt.height, - "depth": opt.depth, - "x": opt.x + opt.spacingX * i, - "y": opt.y, - "z": opt.z + opt.spacingZ * i, - "color": opt.color, - "sides": "top bottom left right front back" - }); - scene.add(scalebox) - } - - } - -}) |
