forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenes.js
More file actions
111 lines (70 loc) · 2.84 KB
/
scenes.js
File metadata and controls
111 lines (70 loc) · 2.84 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
function generateGeometry( objectType, numObjects ) {
var geometry = new THREE.Geometry();
function applyVertexColors( g, c ) {
g.faces.forEach( function( f ) {
var n = ( f instanceof THREE.Face3 ) ? 3 : 4;
for ( var j = 0; j < n; j ++ ) {
f.vertexColors[ j ] = c;
}
} );
}
for ( var i = 0; i < numObjects; i ++ ) {
var position = new THREE.Vector3();
position.x = Math.random() * 10000 - 5000;
position.y = Math.random() * 6000 - 3000;
position.z = Math.random() * 8000 - 4000;
var rotation = new THREE.Euler();
rotation.x = Math.random() * 2 * Math.PI;
rotation.y = Math.random() * 2 * Math.PI;
rotation.z = Math.random() * 2 * Math.PI;
var scale = new THREE.Vector3();
var geom, color = new THREE.Color();
scale.x = Math.random() * 200 + 100;
if ( objectType == "cube" ) {
geom = new THREE.BoxGeometry( 1, 1, 1 );
scale.y = Math.random() * 200 + 100;
scale.z = Math.random() * 200 + 100;
color.setRGB( 0, 0, Math.random() + 0.1 );
} else if ( objectType == "sphere" ) {
geom = new THREE.IcosahedronGeometry( 1, 1 );
scale.y = scale.z = scale.x;
color.setRGB( Math.random() + 0.1, 0, 0 );
}
// give the geom's vertices a random color, to be displayed
applyVertexColors( geom, color );
var mesh = new THREE.Mesh( geom );
mesh.position.copy( position );
mesh.rotation.copy( rotation );
mesh.scale.copy( scale );
mesh.updateMatrix();
geometry.merge( mesh.geometry, mesh.matrix );
}
return geometry;
}
function Scene ( type, numObjects, cameraZ, fov, rotationSpeed, clearColor ) {
this.clearColor = clearColor;
this.camera = new THREE.PerspectiveCamera( fov, window.innerWidth / window.innerHeight, 1, 10000 );
this.camera.position.z = cameraZ;
// Setup scene
this.scene = new THREE.Scene();
this.scene.add( new THREE.AmbientLight( 0x555555 ) );
var light = new THREE.SpotLight( 0xffffff, 1.5 );
light.position.set( 0, 500, 2000 );
this.scene.add( light );
this.rotationSpeed = rotationSpeed;
defaultMaterial = new THREE.MeshPhongMaterial( { color: 0xffffff, shading: THREE.FlatShading, vertexColors: THREE.VertexColors } );
this.mesh = new THREE.Mesh( generateGeometry( type, numObjects ), defaultMaterial );
this.scene.add( this.mesh );
renderTargetParameters = { minFilter: THREE.LinearFilter, magFilter: THREE.LinearFilter, format: THREE.RGBFormat, stencilBuffer: false };
this.fbo = new THREE.WebGLRenderTarget( window.innerWidth, window.innerHeight, renderTargetParameters );
this.render = function( delta, rtt ) {
this.mesh.rotation.x += delta * this.rotationSpeed.x;
this.mesh.rotation.y += delta * this.rotationSpeed.y;
this.mesh.rotation.z += delta * this.rotationSpeed.z;
renderer.setClearColor( this.clearColor );
if ( rtt )
renderer.render( this.scene, this.camera, this.fbo, true );
else
renderer.render( this.scene, this.camera );
};
}