summaryrefslogtreecommitdiff
path: root/assets/javascripts/rectangles/_env.js
blob: e2e8e31b71d0fb3fff0f6a51a51bc3197ee306d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
var environment = new function(){}
environment.init = function(){
	scene.camera.move({
		"x": 240,
		"y": -1000,
		"z": 240,
		"rotationX": -PI/2,
		"rotationY": 0 // PI
	})
	map && map.zoom(3.00) && map.recenter()

	clipper.rects.push( new rect(100,100, 200,300) )
	clipper.rects.push( new rect(200,300, 300,500) )

	clipper.rects.push( new rect(300,100, 600,300) )
	clipper.rects.push( new rect(400,200, 700,400) )

	clipper.init()
	scene.update()
}
environment.update = function(t){
}