I am using Three.js to develop a cube that translates and rotate in 3D space using data from accelerometer and gyroscope data.
So far I have one canvas that shows the accelerometer movement. Now I need to have another canvas that shows the gyroscope data on a separate canvas, I prefer to have two JS code for each canvas, so they are independent of each other. I wasn’t able to make two separate canvases, and I don’t know if it is even possible to use two different javascript codes in the html.
Below is how my HTML is structured:
HTML
JavaScript
x
19
19
1
<!DOCTYPE html>
2
<html>
3
4
<head>
5
<meta charset="UTF-8">
6
</head>
7
8
<body>
9
<canvas id="canvas" width="500" height="800" style="border:1px solid #eb1c1c;"></canvas>
10
<div id="info">
11
<div>t = <span id="time">0</span> s</div>
12
<div>accX = <span id="accX">0</span></div>
13
<div>accY = <span id="accY">0</span></div>
14
<div>accZ = <span id="accZ">0</span></div>
15
</div>
16
17
</body>
18
</html>
19
and this is the javascript:
JavaScript
1
131
131
1
import * as THREE from "three";
2
import data from "../data/data.json"
3
import "./style.css"
4
5
var width = window.innerWidth;
6
var height = window.innerHeight;
7
const canvas = document.querySelector('#canvas');
8
const renderer = new THREE.WebGLRenderer({ canvas });
9
renderer.setSize (width, height);
10
11
var planeSize = 100000
12
const fov = 70;
13
const aspect = 2; // the canvas default
14
const near = 20;
15
const far = 500;
16
17
const camera = new THREE.PerspectiveCamera(70, width/height, 1, 10000);
18
19
camera.position.y = 3;
20
camera.position.z = 30;
21
22
camera.lookAt (new THREE.Vector3(0,0,0));
23
// camera.position.set(0, 40, 1.5);
24
// camera.up.set(0, 10, 1);
25
// camera.lookAt(0, 10, 0);
26
27
const scene = new THREE.Scene();
28
{
29
const color = 0x00afaf;
30
const intensity = 10;
31
const size = 10;
32
const divisions = 10;
33
34
const gridHelper = new THREE.GridHelper( planeSize, 5000 );
35
gridHelper.setColors( new THREE.Color(0xff0000), new THREE.Color(0xffffff) );
36
scene.add(gridHelper);
37
38
const light = new THREE.PointLight(color, intensity);
39
scene.add(light);
40
// scene.add( gridHelper );
41
}
42
43
// // label the axis
44
// var textGeo = new THREE.TextGeometry('Y', {
45
// size: 5,
46
// height: 2,
47
// curveSegments: 6,
48
// font: "helvetiker",
49
// style: "normal"
50
// });
51
52
// var color = new THREE.Color();
53
// color.setRGB(255, 250, 250);
54
// var textMaterial = new THREE.MeshBasicMaterial({ color: color });
55
// var text = new THREE.Mesh(textGeo , textMaterial);
56
57
// text.position.x = axis.geometry.vertices[1].x;
58
// text.position.y = axis.geometry.vertices[1].y;
59
// text.position.z = axis.geometry.vertices[1].z;
60
// text.rotation = camera.rotation;
61
// scene.add(text);
62
63
const boxGeometry = new THREE.BoxGeometry();
64
const boxMaterial = new THREE.MeshBasicMaterial({ color: "green", wireframe: false });
65
const object = new THREE.Mesh(boxGeometry, boxMaterial);
66
67
var cubeAxis = new THREE.AxesHelper(3);
68
object.add(cubeAxis);
69
70
object.scale.set(5, 5, 5)
71
scene.add(object);
72
scene.background = new THREE.Color(0.22, 0.23, 0.22);
73
74
let currentIndex = 0
75
let time = data[currentIndex].time
76
let velocity = new THREE.Vector3()
77
requestAnimationFrame(render);
78
79
function render(dt) {
80
dt *= 0.0001 // in seconds
81
time += dt
82
document.querySelector("#time").textContent = time.toFixed(2)
83
84
// Find datapoint matching current time
85
while (data[currentIndex].time < time) {
86
currentIndex++
87
if (currentIndex >= data.length) return
88
}
89
const { rotX, rotY, rotZ, accX, accY, accZ } = data[currentIndex]
90
document.querySelector("#accX").textContent = accX* 10;
91
document.querySelector("#accY").textContent = accY* 10;
92
document.querySelector("#accZ").textContent = accZ* 10;
93
const acceleration = new THREE.Vector3()
94
// object.rotation.set( rotX, rotY, rotZ)
95
object.position.x = accX * 30;
96
// object.position.add(velocity.clone().multiplyScalar(dt)).add(acceleration.clone().multiplyScalar(50 * dt ** 2))
97
// object.position.add(accZ)
98
// velocity.add(acceleration.clone().multiplyScalar(dt))
99
100
var relativeCameraOffset = new THREE.Vector3 (0,10,10);
101
var cameraOffset = relativeCameraOffset.applyMatrix4( object.matrixWorld );
102
camera.position.x = cameraOffset.x;
103
camera.position.y = cameraOffset.y;
104
camera.position.z = cameraOffset.z;
105
camera.lookAt( object.position );
106
107
resizeToClient();
108
renderer.render(scene, camera);
109
requestAnimationFrame(render);
110
}
111
112
function resizeToClient() {
113
const needResize = resizeRendererToDisplaySize()
114
if (needResize) {
115
const canvas = renderer.domElement;
116
camera.aspect = canvas.clientWidth / canvas.clientHeight;
117
camera.updateProjectionMatrix();
118
}
119
}
120
121
function resizeRendererToDisplaySize() {
122
const canvas = renderer.domElement;
123
const width = canvas.clientWidth;
124
const height = canvas.clientHeight;
125
const needResize = canvas.width !== width || canvas.height !== height;
126
if (needResize) {
127
renderer.setSize(width, height, false);
128
}
129
return needResize;
130
}
131
this is how I want the canvas to look like:
Advertisement
Answer
Good news is it is possible, you just have to put all your code(at least animations) in separate functions :
JavaScript
1
63
63
1
const scene = new THREE.Scene();
2
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
3
const scene1 = new THREE.Scene();
4
const camera1 = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
5
6
scene.background = new THREE.Color( 0xf0000f);
7
scene1.background = new THREE.Color( 0x0000ff );
8
9
const renderer = new THREE.WebGLRenderer();
10
renderer.setSize( window.innerWidth, window.innerHeight );
11
12
const renderer1 = new THREE.WebGLRenderer();
13
renderer1.setSize( window.innerWidth, window.innerHeight );
14
15
renderer1.domElement.width=500;
16
renderer1.domElement.height=300;
17
renderer1.domElement.style.position="absolute";
18
renderer1.domElement.style.top=0;
19
renderer1.domElement.style.height=150+"px";
20
renderer1.domElement.style.width=200+"px";
21
22
renderer.domElement.width=500;
23
renderer.domElement.height=300;
24
renderer.domElement.style.position="absolute";
25
renderer.domElement.style.top=0;
26
27
28
document.body.appendChild( renderer.domElement );
29
document.body.appendChild( renderer1.domElement );
30
31
const geometry = new THREE.BoxGeometry();
32
const material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
33
const cube = new THREE.Mesh( geometry, material );
34
scene.add( cube );
35
36
const geometry1 = new THREE.BoxGeometry(3,3,3);
37
const material1 = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
38
const cube1 = new THREE.Mesh( geometry1, material1 );
39
scene1.add( cube1 );
40
41
camera.position.z = 5;
42
camera1.position.z = 5;
43
44
const animate = function () {
45
requestAnimationFrame( animate );
46
47
cube.rotation.x += 0.01;
48
cube.rotation.y += 0.01;
49
50
renderer.render( scene, camera );
51
};
52
53
const animate1 = function () {
54
requestAnimationFrame( animate1 );
55
56
cube1.rotation.x += 0.01;
57
cube1.rotation.y += 0.01;
58
59
renderer1.render( scene1, camera1 );
60
};
61
62
animate();
63
animate1();
JavaScript
1
1
1
<script src="http://threejs.org/build/three.min.js"></script>