fourdjs/main.js

255 lines
4.8 KiB
JavaScript
Raw Normal View History

2023-07-22 01:11:18 +00:00
import * as THREE from 'three';
2023-07-24 23:05:06 +00:00
import * as POLYTOPES from './polytopes.js';
2023-07-24 23:05:06 +00:00
import { FourDShape } from './fourDShape.js';
2023-07-24 02:34:48 +00:00
2023-07-25 05:43:26 +00:00
import { GUI } from 'lil-gui';
2023-07-22 03:24:42 +00:00
2023-07-22 06:59:48 +00:00
2023-07-27 09:23:26 +00:00
const DEFAULT_SHAPE = '120-cell';
2023-07-23 05:57:34 +00:00
// hacky stuff for 4d rotations
2023-07-23 05:57:34 +00:00
// see https://math.stackexchange.com/questions/1402362/can-rotations-in-4d-be-given-an-explicit-matrix-form#1402376
2023-07-23 05:57:34 +00:00
function rotZW(theta) {
const ctheta = Math.cos(theta);
const stheta = Math.sin(theta);
return new THREE.Matrix4(
ctheta, -stheta, 0, 0,
stheta, ctheta, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1
);
}
function rotYW(theta) {
const ctheta = Math.cos(theta);
const stheta = Math.sin(theta);
return new THREE.Matrix4(
ctheta, 0, -stheta, 0,
0, 1, 0, 0,
stheta, 0, ctheta, 0,
0, 0, 0, 1,
);
}
function rotYZ(theta) {
const ctheta = Math.cos(theta);
const stheta = Math.sin(theta);
return new THREE.Matrix4(
ctheta, 0, 0, -stheta,
0, 1, 0, 0,
0, 0, 1, 0,
stheta, 0, 0, ctheta,
);
}
function rotXW(theta) {
const ctheta = Math.cos(theta);
const stheta = Math.sin(theta);
return new THREE.Matrix4(
1, 0, 0, 0,
0, ctheta, -stheta, 0,
0, stheta, ctheta, 0,
0, 0, 0, 1
);
}
function rotXZ(theta) {
const ctheta = Math.cos(theta);
const stheta = Math.sin(theta);
return new THREE.Matrix4(
1, 0, 0, 0,
0, ctheta, 0, -stheta,
0, 0, 1, 0,
0, stheta, 0, ctheta,
);
}
function rotXY(theta) {
const ctheta = Math.cos(theta);
const stheta = Math.sin(theta);
return new THREE.Matrix4(
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, ctheta, -stheta,
0, 0, stheta, ctheta,
);
}
2023-07-22 06:59:48 +00:00
2023-07-22 03:24:42 +00:00
2023-07-22 06:59:48 +00:00
2023-07-22 01:11:18 +00:00
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
const light = new THREE.PointLight(0xffffff, 2);
light.position.set(10, 10, 10);
scene.add(light);
2023-07-24 02:34:48 +00:00
const amblight = new THREE.AmbientLight(0xffffff, 0.5);
scene.add(amblight);
scene.background = new THREE.Color(0xdddddd);
2023-07-24 23:05:06 +00:00
const renderer = new THREE.WebGLRenderer({antialias: true});
2023-07-22 01:11:18 +00:00
renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement );
const NODE_OPACITY = 1.0;
const LINK_OPACITY = 0.7;
// nodes. links
// 0 R 0 (0-1) Y
// 1 G 1 (1-2) C
// 2 B 2 (0-2) M
// duals
// 0 C 0 (0-1) G
// 1 Y 1 (1-2) R
// 2 M 2 (0-2) B
2023-07-24 02:34:48 +00:00
2023-07-24 23:34:53 +00:00
const node_ms = [
2023-07-27 09:23:26 +00:00
new THREE.MeshStandardMaterial( { color: 0xc0c0c0 } ),
new THREE.MeshStandardMaterial( { color: 0x20dddd } ),
new THREE.MeshStandardMaterial( { color: 0xdddd20 } ),
new THREE.MeshStandardMaterial( { color: 0xdd20dd } ),
2023-07-24 23:34:53 +00:00
];
2023-07-24 02:34:48 +00:00
2023-07-24 23:34:53 +00:00
for( const node_m of node_ms ) {
node_m.roughness = 0.9;
2023-07-22 03:40:01 +00:00
if( NODE_OPACITY < 1.0 ) {
node_m.transparent = true;
node_m.opacity = NODE_OPACITY;
}
2023-07-24 02:00:34 +00:00
}
2023-07-24 23:34:53 +00:00
const link_ms = [
new THREE.MeshStandardMaterial( { color: 0xeeeeee } ),
new THREE.MeshStandardMaterial( { color: 0x20dd20 } ),
new THREE.MeshStandardMaterial( { color: 0xdd2020 } ),
new THREE.MeshStandardMaterial( { color: 0x2020dd } ),
2023-07-24 23:34:53 +00:00
];
2023-07-24 02:00:34 +00:00
2023-07-24 23:34:53 +00:00
for( const link_m of link_ms ) {
link_m.metalness = 0.8;
link_m.roughness = 0.1;
2023-07-24 02:00:34 +00:00
if( LINK_OPACITY < 1.0 ) {
link_m.transparent = true;
link_m.opacity = LINK_OPACITY;
2023-07-24 23:34:53 +00:00
}
2023-07-24 02:00:34 +00:00
}
2023-07-22 06:59:48 +00:00
2023-07-25 05:43:26 +00:00
const STRUCTURES = {
'5-cell': POLYTOPES.cell5(),
'16-cell': POLYTOPES.cell16(),
'tesseract': POLYTOPES.tesseract(),
'24-cell': POLYTOPES.cell24(),
'120-cell': POLYTOPES.cell120()
2023-07-25 05:43:26 +00:00
};
console.log(STRUCTURES);
2023-07-25 05:43:26 +00:00
let shape = false;
function createShape(name) {
if( shape ) {
scene.remove(shape);
}
console.log(STRUCTURES[name]);
2023-07-25 05:43:26 +00:00
shape = new FourDShape(node_ms, link_ms, STRUCTURES[name]);
scene.add(shape);
}
2023-07-22 03:24:42 +00:00
2023-07-22 03:40:01 +00:00
createShape(DEFAULT_SHAPE);
2023-07-22 03:24:42 +00:00
2023-07-24 03:57:51 +00:00
camera.position.z = 4;
2023-07-24 02:34:48 +00:00
const dragK = 0.005;
2023-07-23 05:57:34 +00:00
let theta = 0;
2023-07-24 03:57:51 +00:00
let psi = 0;
let startX = 0;
let startY = 0;
let startX0 = 0;
let startY0 = 0;
2023-07-24 03:57:51 +00:00
renderer.domElement.addEventListener("mousedown", (event) => {
if( event.buttons === 1 ) {
startX = event.clientX;
startY = event.clientY;
startX0 = theta / dragK;
startY0 = theta / dragK;
2023-07-24 03:57:51 +00:00
}
})
renderer.domElement.addEventListener("mousemove", (event) => {
if( event.buttons === 1 ) {
theta = (event.clientX - startX + startX0) * dragK;
psi = (event.clientY - startY + startY0) * dragK;
2023-07-24 03:57:51 +00:00
}
})
2023-07-22 01:11:18 +00:00
2023-07-25 05:43:26 +00:00
// set up GUI
const gui = new GUI();
const gui_params = {
shape: DEFAULT_SHAPE,
2023-07-25 05:43:26 +00:00
hyperplane: 2,
xRotate: 'YW',
yRotate: 'XZ',
};
gui.add(gui_params, 'shape',
[ '5-cell', '16-cell', 'tesseract', '24-cell', '120-cell' ]
2023-07-25 05:43:26 +00:00
).onChange(createShape)
gui.add(gui_params, 'hyperplane', 1.5, 4);
2023-07-25 05:43:26 +00:00
gui.add(gui_params, 'xRotate', [ 'YW', 'YZ', 'ZW' ]);
gui.add(gui_params, 'yRotate', [ 'XZ', 'XY', 'XW' ]);
const ROTFN = {
XY: rotXY,
XZ: rotXZ,
XW: rotXW,
YZ: rotYZ,
YW: rotYW,
ZW: rotZW,
};
2023-07-22 01:11:18 +00:00
2023-07-22 03:24:42 +00:00
2023-07-23 05:57:34 +00:00
const rotation = new THREE.Matrix4();
2023-07-22 06:59:48 +00:00
2023-07-22 01:11:18 +00:00
function animate() {
requestAnimationFrame( animate );
2023-07-25 05:43:26 +00:00
const rotations = [
ROTFN[gui_params.xRotate](theta),
ROTFN[gui_params.yRotate](psi)
];
shape.hyperplane = gui_params.hyperplane;
shape.render3(rotations);
2023-07-22 01:11:18 +00:00
renderer.render( scene, camera );
}
animate();