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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
<html>
<head>
<title>Wishing Tree Playground</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://mrdoob.github.com/three.js/build/Three.js"></script>
<script src="lsys.js"></script>
</head>
<body>
<h2>L-Systems.js Playground</h2>
<div id="container"></div>
<script>
var WIDTH = 800; //window.innerWidth;
var HEIGHT = 600; //window.innerHeight;
var container;
var scene, camera, renderer;
var mouseX = 0, mouseY = 0;
var windowHalfX = WIDTH / 2;
var windowHalfY = HEIGHT / 2;
init();
draw_cube();
animate();
function init() {
scene = new THREE.Scene();
camera = new THREE.PerspectiveCamera(20, WIDTH / HEIGHT, 1, 10000);
camera.position.z = 180;
scene.add(camera);
light = new THREE.DirectionalLight( 0xffffff );
light.position.set( 0, 0, 1 );
scene.add(light);
renderer = new THREE.WebGLRenderer( { antialias: true } );
renderer.setSize(WIDTH, HEIGHT);
container = document.getElementById('container');
container.appendChild(renderer.domElement);
document.addEventListener('mousemove', onDocumentMouseMove, false);
}
function onDocumentMouseMove( event ) {
mouseX = (event.clientX - windowHalfX);
mouseY = (event.clientY - windowHalfY);
}
function draw_cube() {
var materials = [];
for (var i=0; i<6; i++) {
materials.push(new THREE.MeshBasicMaterial({
color : Math.random() * 0xffffff
}));
}
var cube = new THREE.Mesh(new THREE.CubeGeometry(5, 5, 5, 1, 1, 1, materials), new THREE.MeshFaceMaterial());
cube.position.x = 2.5;
cube.position.y = 2.5;
cube.position.z = 2.5;
scene.add(cube);
}
function animate() {
requestAnimationFrame(animate);
render();
}
function render() {
camera.position.x += (mouseX - camera.position.x) * 0.05;
camera.position.y += (-mouseY - camera.position.y) * 0.05;
camera.lookAt(scene.position);
renderer.render(scene, camera);
}
</script>
</body>
</html>
|