-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
103 lines (90 loc) · 3.07 KB
/
main.js
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
import * as THREE from "three";
import { STLLoader } from "three/addons/loaders/STLLoader.js";
import { OrbitControls } from "three/addons/controls/OrbitControls.js";
const scene = new THREE.Scene();
const renderer = new THREE.WebGLRenderer({ alpha: true }); //{alpha: true} is for transparent background
renderer.setSize(window.innerWidth, window.innerHeight);
//renderer.shadowMap.enabled = true; // Enable shadows
//renderer.shadowMap.type = THREE.PCFSoftShadowMap; // Optional: Use a softer shadow type
document.body.appendChild(renderer.domElement);
// Add a cube
//const geometry = new THREE.BoxGeometry( 1, 1, 1 );
//const material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
//const cube = new THREE.Mesh( geometry, material );
//scene.add( cube );
// add a file
let stl;
const loader = new STLLoader();
loader.load(
"mystl.stl",
function (geometry) {
const material = new THREE.MeshPhongMaterial({ color: 0x44aa88 });
//const material = new THREE.MeshDepthMaterial();
stl = new THREE.Mesh(geometry, material);
//stl.castShadow = true;
scene.add(stl);
},
undefined,
function (error) {
console.error(error);
}
);
//Add a light
const color = 0xffffff;
const intensity = 1;
const light = new THREE.DirectionalLight(color, intensity);
light.position.set(-1, 2, 4);
scene.add(light);
//Add a camera
const fov = 45;
const aspect = 2; // the canvas default
const near = 0.3;
const far = 25;
const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
//const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
//camera.position.set(0, 10, 1);
camera.position.z = 15;
//Add a ground plane
//const planeSize = 400;
//const gloader = new THREE.TextureLoader();
//const texture = gloader.load('tile2.png');
//texture.wrapS = THREE.RepeatWrapping;
//texture.wrapT = THREE.RepeatWrapping;
//texture.magFilter = THREE.NearestFilter;
//texture.colorSpace = THREE.SRGBColorSpace;
//const repeats = planeSize / 2;
//texture.repeat.set(repeats, repeats);
//const planeGeo = new THREE.PlaneGeometry(planeSize, planeSize);
//const planeMat = new THREE.MeshPhongMaterial({
// map: texture,
// side: THREE.DoubleSide,
//});
//const mesh = new THREE.Mesh(planeGeo, planeMat);
//mesh.rotation.x = Math.PI * -.5;
//scene.add(mesh);
//Camera Orbit
//const controls = new OrbitControls(camera);
//controls.target.set(0, 5, 0);
//controls.update();
// Load the rotations.json file
let rotations = { roll: 0, pitch: 0, yaw: 0 };
function fetchRotations() {
return fetch("rotation.json")
.then((response) => response.json())
.then((data) => {
rotations = data;
})
.catch((err) => console.error("Failed to load rotations.json:", err));
}
fetchRotations();
setInterval(fetchRotations, 10);
// Animation loop
function animate() {
if (stl && rotations) {
stl.rotation.x = THREE.MathUtils.degToRad(rotations.roll);
stl.rotation.y = THREE.MathUtils.degToRad(rotations.pitch);
stl.rotation.z = THREE.MathUtils.degToRad(rotations.yaw);
}
renderer.render(scene, camera);
}
renderer.setAnimationLoop(animate);