summaryrefslogtreecommitdiff
path: root/assets/javascripts/environments/tableaux/columns_split.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2014-06-03 16:24:10 -0400
committerJules Laplace <jules@okfoc.us>2014-06-03 16:24:28 -0400
commit607f69c67a5b4dc72d2754192e3cdf67d0ad11d0 (patch)
tree6556e7922c5bedb274bb1650e5dd100643a7895d /assets/javascripts/environments/tableaux/columns_split.js
parentd31259291d807c851de4396921e0c26b6dd8dce2 (diff)
partitioning client and serveR
Diffstat (limited to 'assets/javascripts/environments/tableaux/columns_split.js')
-rw-r--r--assets/javascripts/environments/tableaux/columns_split.js63
1 files changed, 0 insertions, 63 deletions
diff --git a/assets/javascripts/environments/tableaux/columns_split.js b/assets/javascripts/environments/tableaux/columns_split.js
deleted file mode 100644
index b9981d6..0000000
--- a/assets/javascripts/environments/tableaux/columns_split.js
+++ /dev/null
@@ -1,63 +0,0 @@
-MX.Tableaux.ColumnsSplit = MX.Tableau.extend({
-
- init: function (opt) {
-
- this.opt = opt = defaults(opt, {
- width: 100,
- height: 100,
- depth: 100,
- norm: 0.5,
- gap: 5,
- x: 0,
- y: 0,
- z: 0,
- rotationY: 0,
- scale: 1,
- count: 1,
- })
-
- opt.colorBottom = opt.colorBottom || opt.color
-
- if ( ! (opt.norm instanceof Array) ) {
- opt.norm = [ opt.norm, opt.norm ]
- }
-
- var norm, spacingX, spacingZ, scalebox
-
- for (var i = 0; i < opt.count; i++) {
-
- norm = lerp( i/(opt.count-1), opt.norm[0], opt.norm[1] )
-
- spacingX = opt.spacingX * i
- spacingZ = opt.spacingZ * i
-
- scalebox = new MX.ScaleBox({
- "width": opt.width,
- "height": opt.height * norm,
- "depth": opt.depth,
- "x": opt.x + spacingX,
- "y": opt.y + opt.gap,
- "z": opt.z + spacingZ,
- "color": opt.color,
- "sides": "top bottom left right front back",
- "rotationY": opt.rotationY,
- });
- scene.add(scalebox)
-
- scalebox = new MX.ScaleBox({
- "width": opt.width,
- "height": opt.height * (1 - norm),
- "depth": opt.depth,
- "x": opt.x + spacingX,
- "y": opt.y - opt.height * (1 - norm) - opt.gap,
- "z": opt.z + spacingZ,
- "color": opt.colorBottom,
- "sides": "top bottom left right front back",
- "rotationY": opt.rotationY,
- });
- scene.add(scalebox)
- }
-
- }
-
-})