2023-07-24 23:05:06 +00:00
|
|
|
import * as THREE from 'three';
|
|
|
|
|
|
|
|
|
2023-08-04 04:10:39 +00:00
|
|
|
const HYPERPLANE = 2.0;
|
2023-07-24 23:05:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FourDShape extends THREE.Group {
|
|
|
|
|
2023-07-28 07:06:42 +00:00
|
|
|
constructor(node_ms, link_ms, face_ms, structure) {
|
2023-07-24 23:05:06 +00:00
|
|
|
super();
|
|
|
|
this.node_ms = node_ms;
|
2023-07-24 23:34:53 +00:00
|
|
|
this.link_ms = link_ms;
|
2023-07-28 07:06:42 +00:00
|
|
|
this.face_ms = face_ms;
|
2023-07-24 23:05:06 +00:00
|
|
|
this.nodes4 = structure.nodes;
|
|
|
|
this.nodes3 = {};
|
|
|
|
this.links = structure.links;
|
2023-07-28 07:06:42 +00:00
|
|
|
this.faces = ( "faces" in structure ) ? structure.faces : [];
|
2023-07-29 06:23:08 +00:00
|
|
|
this.node_size = structure.geometry.node_size;
|
|
|
|
this.link_size = structure.geometry.link_size;
|
2023-08-04 04:10:39 +00:00
|
|
|
this.node_scale = 1;
|
|
|
|
this.link_scale = 1;
|
2023-07-25 05:43:26 +00:00
|
|
|
this.hyperplane = HYPERPLANE;
|
2023-07-24 23:05:06 +00:00
|
|
|
this.initShapes();
|
|
|
|
}
|
|
|
|
|
2023-07-25 05:43:26 +00:00
|
|
|
|
|
|
|
|
2023-07-24 23:34:53 +00:00
|
|
|
// if a node/link has no label, use the 0th material
|
|
|
|
|
|
|
|
getMaterial(entity, materials) {
|
|
|
|
if( "label" in entity ) {
|
|
|
|
return materials[entity.label];
|
|
|
|
} else {
|
|
|
|
return materials[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-24 23:05:06 +00:00
|
|
|
makeNode(material, v3) {
|
2023-07-29 06:23:08 +00:00
|
|
|
const geometry = new THREE.SphereGeometry(this.node_size);
|
2023-07-24 23:05:06 +00:00
|
|
|
const sphere = new THREE.Mesh(geometry, material);
|
|
|
|
sphere.position.copy(v3);
|
|
|
|
this.add(sphere);
|
|
|
|
return sphere;
|
|
|
|
}
|
|
|
|
|
2023-07-24 23:34:53 +00:00
|
|
|
makeLink(material, link) {
|
2023-07-24 23:05:06 +00:00
|
|
|
const n1 = this.nodes3[link.source].v3;
|
|
|
|
const n2 = this.nodes3[link.target].v3;
|
|
|
|
const length = n1.distanceTo(n2);
|
|
|
|
const centre = new THREE.Vector3();
|
|
|
|
centre.lerpVectors(n1, n2, 0.5);
|
2023-07-29 06:23:08 +00:00
|
|
|
const geometry = new THREE.CylinderGeometry(this.link_size, this.link_size, 1);
|
2023-07-24 23:34:53 +00:00
|
|
|
const cyl = new THREE.Mesh(geometry, material);
|
2023-07-24 23:05:06 +00:00
|
|
|
const edge = new THREE.Group();
|
|
|
|
edge.add(cyl);
|
|
|
|
edge.position.copy(centre);
|
|
|
|
edge.scale.copy(new THREE.Vector3(1, 1, length));
|
|
|
|
edge.lookAt(n2);
|
|
|
|
cyl.rotation.x = Math.PI / 2.0;
|
|
|
|
this.add(edge);
|
|
|
|
return edge;
|
|
|
|
}
|
|
|
|
|
2023-10-31 23:22:26 +00:00
|
|
|
updateLink(link, links_show) {
|
2023-07-24 23:05:06 +00:00
|
|
|
const n1 = this.nodes3[link.source].v3;
|
|
|
|
const n2 = this.nodes3[link.target].v3;
|
|
|
|
const length = n1.distanceTo(n2);
|
|
|
|
const centre = new THREE.Vector3();
|
|
|
|
centre.lerpVectors(n1, n2, 0.5);
|
2023-08-04 04:10:39 +00:00
|
|
|
link.object.scale.copy(new THREE.Vector3(this.link_scale, this.link_scale, length));
|
2023-07-24 23:05:06 +00:00
|
|
|
link.object.position.copy(centre);
|
|
|
|
link.object.lookAt(n2);
|
|
|
|
link.object.children[0].rotation.x = Math.PI / 2.0;
|
2023-10-31 23:22:26 +00:00
|
|
|
link.object.visible = (!links_show || link.label in links_show);
|
2023-07-24 23:05:06 +00:00
|
|
|
}
|
|
|
|
|
2023-07-28 07:06:42 +00:00
|
|
|
|
|
|
|
setFaceGeometry(face, geometry) {
|
|
|
|
const values = [];
|
|
|
|
for( const f of face.nodes ) {
|
|
|
|
const v3 = this.nodes3[f].v3;
|
|
|
|
values.push(v3.x);
|
|
|
|
values.push(v3.y);
|
|
|
|
values.push(v3.z);
|
|
|
|
}
|
|
|
|
const v3 = this.nodes3[face.nodes[0]].v3;
|
|
|
|
values.push(v3.x);
|
|
|
|
values.push(v3.y);
|
|
|
|
values.push(v3.z);
|
|
|
|
const vertices = new Float32Array(values);
|
|
|
|
geometry.setAttribute( 'position', new THREE.BufferAttribute( vertices, 3 ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
makeFace(material, face) {
|
|
|
|
const geometry = new THREE.BufferGeometry();
|
|
|
|
this.setFaceGeometry(face, geometry)
|
|
|
|
const mesh = new THREE.Mesh( geometry, material );
|
|
|
|
this.add(mesh);
|
|
|
|
return mesh;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-25 05:43:26 +00:00
|
|
|
fourDtoV3(x, y, z, w, rotations) {
|
|
|
|
const v4 = new THREE.Vector4(x, y, z, w);
|
|
|
|
for ( const m4 of rotations ) {
|
|
|
|
v4.applyMatrix4(m4);
|
|
|
|
}
|
|
|
|
const k = this.hyperplane / (this.hyperplane + v4.w);
|
|
|
|
return new THREE.Vector3(v4.x * k, v4.y * k, v4.z * k);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-24 23:05:06 +00:00
|
|
|
initShapes() {
|
|
|
|
for( const n of this.nodes4 ) {
|
2023-07-25 05:43:26 +00:00
|
|
|
const v3 = this.fourDtoV3(n.x, n.y, n.z, n.w, []);
|
2023-07-24 23:34:53 +00:00
|
|
|
const material = this.getMaterial(n, this.node_ms);
|
2023-07-24 23:05:06 +00:00
|
|
|
this.nodes3[n.id] = {
|
|
|
|
v3: v3,
|
2023-10-27 01:45:46 +00:00
|
|
|
label: n.label,
|
2023-07-24 23:05:06 +00:00
|
|
|
object: this.makeNode(material, v3)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
for( const l of this.links ) {
|
2023-07-24 23:34:53 +00:00
|
|
|
const material = this.getMaterial(l, this.link_ms);
|
|
|
|
l.object = this.makeLink(material, l);
|
2023-07-24 23:05:06 +00:00
|
|
|
}
|
2023-07-31 07:37:19 +00:00
|
|
|
for( const f of this.faces ) {
|
|
|
|
const material = this.getMaterial(f, this.face_ms);
|
|
|
|
f.object = this.makeFace(material, f);
|
|
|
|
}
|
2023-07-24 23:05:06 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 05:43:26 +00:00
|
|
|
|
2023-10-31 23:22:26 +00:00
|
|
|
render3(rotations, nodes_show, links_show) {
|
2023-08-04 04:10:39 +00:00
|
|
|
this.scalev3 = new THREE.Vector3(this.node_scale, this.node_scale, this.node_scale);
|
2023-07-24 23:05:06 +00:00
|
|
|
for( const n of this.nodes4 ) {
|
2023-07-25 05:43:26 +00:00
|
|
|
const v3 = this.fourDtoV3(n.x, n.y, n.z, n.w, rotations);
|
2023-07-24 23:05:06 +00:00
|
|
|
this.nodes3[n.id].v3 = v3;
|
|
|
|
this.nodes3[n.id].object.position.copy(v3);
|
2023-07-29 06:23:08 +00:00
|
|
|
this.nodes3[n.id].object.scale.copy(this.scalev3);
|
2023-10-31 23:22:26 +00:00
|
|
|
this.nodes3[n.id].object.visible = ( !nodes_show || n.label in nodes_show );
|
2023-07-24 23:05:06 +00:00
|
|
|
}
|
|
|
|
for( const l of this.links ) {
|
2023-10-31 23:22:26 +00:00
|
|
|
this.updateLink(l, links_show);
|
2023-07-24 23:05:06 +00:00
|
|
|
}
|
2023-07-28 07:06:42 +00:00
|
|
|
|
2023-07-31 07:37:19 +00:00
|
|
|
for( const f of this.faces ) {
|
|
|
|
this.setFaceGeometry(f, f.object.geometry);
|
|
|
|
}
|
2023-07-24 23:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-07-31 07:33:40 +00:00
|
|
|
export { FourDShape };
|