summaryrefslogtreecommitdiff
path: root/assets/javascripts/environments/tableaux/_empty.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2014-04-09 17:45:32 -0400
committerJules Laplace <jules@okfoc.us>2014-04-09 17:45:32 -0400
commitcbd5e2411cd4df39dda75723da9c5e0153ad3331 (patch)
tree61090416889211be2b0d2a37cf5fe0fd545a77e7 /assets/javascripts/environments/tableaux/_empty.js
parent12d7bd4b9dba1c9e51b80059af650ff3fbfda0ca (diff)
box-drawing example
Diffstat (limited to 'assets/javascripts/environments/tableaux/_empty.js')
-rw-r--r--assets/javascripts/environments/tableaux/_empty.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/assets/javascripts/environments/tableaux/_empty.js b/assets/javascripts/environments/tableaux/_empty.js
new file mode 100644
index 0000000..b69fa78
--- /dev/null
+++ b/assets/javascripts/environments/tableaux/_empty.js
@@ -0,0 +1,32 @@
+/*
+
+MX.Tableaux.Foo = MX.Tableau.extend({
+
+ init: function (opt) {
+
+ this.opt = opt = defaults(opt, {
+ width: 100,
+ height: 100,
+ depth: 100,
+ x: 0,
+ y: 0,
+ z: 0,
+ rotationY: 0,
+ rotationX: 0,
+ scale: 1,
+ })
+
+ },
+
+ animate: function() {
+ },
+
+ show: function(){
+ },
+
+ hide: function(){
+ },
+
+})
+
+*/