-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (68 loc) · 2.31 KB
/
index.html
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
83
84
85
86
<html>
<head>
<title>My first Three.js app</title>
<style>
body{
margin: 0;
overflow: hidden;
}
</style>
<meta charset="utf-8">
</head>
<body>
<script src="js/three.js"></script>
<script src="js/dat.gui.min.js"></script>
<script src="js/OrbitControls.js"></script>
<script>
var scene = new THREE.Scene();
var camera = new THREE.PerspectiveCamera( 45, window.innerWidth/window.innerHeight, 0.1, 1000 );
camera.position.set(40,40,40);
camera.lookAt(scene.position);
var renderer = new THREE.WebGLRenderer({antialias:true});
renderer.setClearColor(0xdddddd);
renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement );
var controls = new THREE.OrbitControls(camera, renderer.domElement );
controls.addEventListener( 'change', render );
var axis = new THREE.AxisHelper(10);
scene.add(axis);
var grid = new THREE.GridHelper(50,5);
var color = new THREE.Color("rgb(255,0,0)");
grid.setColors(color, 0x000000);
scene.add (grid);
var light = new THREE.SpotLight(0xffffff);
light.position.set (15,30,50);
scene.add(light);
var geometry = new THREE.BoxGeometry( 5, 5, 5 );
var material = new THREE.MeshLambertMaterial( {color: 0xff3300});
var cube = new THREE.Mesh( geometry, material );
cube.position.set(2.5,5,2.5);
scene.add( cube );
var planeGeometry = new THREE.PlaneGeometry(30,30,30);
var planeMaterial = new THREE.MeshLambertMaterial({color: 0xffffff});
var plane = new THREE.Mesh(planeGeometry, planeMaterial);
plane.rotation.x = -.5*Math.PI;
scene.add(plane);
var guiControls = new function () {
this.rotationX = 0.01;
this.rotationY = 0.01;
this.rotationZ = 0.01;
};
var datGUI = new dat.GUI();
datGUI.add(guiControls, 'rotationX', 0, 1);
datGUI.add(guiControls, 'rotationY', 0, 1);
datGUI.add(guiControls, 'rotationZ', 0, 1);
function render() {
cube.rotation.x += guiControls.rotationX;
cube.rotation.y += guiControls.rotationY;
cube.rotation.z += guiControls.rotationZ;
}
function animate () {
requestAnimationFrame(animate);
render();
renderer.render(scene, camera);
}
animate();
</script>
</body>
</html>