summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/environments/tableaux/_empty.js
blob: b69fa78986ac67ae3a72c4bb8313639773a9c759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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(){
	},

})

*/