Compare commits
	
		
			5 Commits
		
	
	
		
			f79a90e0d9
			...
			0ada3fce6f
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					0ada3fce6f | ||
| 
						 | 
					3f83bde533 | ||
| 
						 | 
					6f4d4cc633 | ||
| 
						 | 
					fb9c78d82f | ||
| 
						 | 
					e478abe7c6 | 
@ -2,7 +2,7 @@ import * as THREE from 'three';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const HYPERPLANE = 2.0;
 | 
			
		||||
const NODE_FORESHORTENING = 0.4;
 | 
			
		||||
const W_FORESHORTENING = 0.04;
 | 
			
		||||
 | 
			
		||||
class FourDShape extends THREE.Group {
 | 
			
		||||
 | 
			
		||||
@ -15,11 +15,10 @@ class FourDShape extends THREE.Group {
 | 
			
		||||
		this.nodes3 = {};
 | 
			
		||||
		this.links = structure.links;
 | 
			
		||||
		this.faces = ( "faces" in structure ) ? structure.faces : [];
 | 
			
		||||
		this.node_size = structure.geometry.node_size;
 | 
			
		||||
		this.link_size = structure.geometry.link_size;
 | 
			
		||||
		this.node_scale = 1;
 | 
			
		||||
		this.link_scale = 1;
 | 
			
		||||
		this.hyperplane = HYPERPLANE;
 | 
			
		||||
		this.foreshortening = W_FORESHORTENING;
 | 
			
		||||
		this.initShapes();
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
@ -44,32 +43,43 @@ class FourDShape extends THREE.Group {
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	makeLink(material, link) {
 | 
			
		||||
		const n1 = this.nodes3[link.source].v3;
 | 
			
		||||
		const n2 = this.nodes3[link.target].v3;
 | 
			
		||||
		const length = n1.distanceTo(n2);
 | 
			
		||||
		const n1 = this.nodes3[link.source];
 | 
			
		||||
		const n2 = this.nodes3[link.target];
 | 
			
		||||
		const s1 = n1.scale;
 | 
			
		||||
		const s2 = n2.scale;
 | 
			
		||||
		const length = n1.v3.distanceTo(n2.v3);
 | 
			
		||||
		const centre = new THREE.Vector3();
 | 
			
		||||
		centre.lerpVectors(n1, n2, 0.5);
 | 
			
		||||
		const geometry = new THREE.CylinderGeometry(this.link_size, this.link_size, 1);
 | 
			
		||||
		centre.lerpVectors(n1.v3, n2.v3, 0.5);
 | 
			
		||||
		const geometry = new THREE.CylinderGeometry(
 | 
			
		||||
			this.link_scale * s2, this.link_scale * s1, 1,
 | 
			
		||||
			16, 1, true
 | 
			
		||||
		);
 | 
			
		||||
		const cyl = new THREE.Mesh(geometry, material);
 | 
			
		||||
		const edge = new THREE.Group();
 | 
			
		||||
		edge.add(cyl);
 | 
			
		||||
		edge.position.copy(centre);
 | 
			
		||||
		edge.scale.copy(new THREE.Vector3(1, 1, length));
 | 
			
		||||
		edge.lookAt(n2);
 | 
			
		||||
		edge.lookAt(n2.v3);
 | 
			
		||||
		cyl.rotation.x = Math.PI / 2.0;
 | 
			
		||||
		this.add(edge);
 | 
			
		||||
		return edge;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	updateLink(link, links_show) {
 | 
			
		||||
		const n1 = this.nodes3[link.source].v3;
 | 
			
		||||
		const n2 = this.nodes3[link.target].v3;
 | 
			
		||||
		const length = n1.distanceTo(n2);
 | 
			
		||||
		const n1 = this.nodes3[link.source];
 | 
			
		||||
		const n2 = this.nodes3[link.target];
 | 
			
		||||
		const s1 = n1.scale;
 | 
			
		||||
		const s2 = n2.scale;
 | 
			
		||||
		const length = n1.v3.distanceTo(n2.v3);
 | 
			
		||||
		const centre = new THREE.Vector3();
 | 
			
		||||
		centre.lerpVectors(n1, n2, 0.5);
 | 
			
		||||
		link.object.scale.copy(new THREE.Vector3(this.link_scale, this.link_scale, length));
 | 
			
		||||
		centre.lerpVectors(n1.v3, n2.v3, 0.5);
 | 
			
		||||
		// take the average of the ends as the thickness - as a workaround,
 | 
			
		||||
		// because I haven't worked out how to reshape tapered links without
 | 
			
		||||
		// having to reassign a new geometry to every link
 | 
			
		||||
		const link_mean = this.link_scale * (s1 + s2) * 0.5;		
 | 
			
		||||
		link.object.scale.copy(new THREE.Vector3(link_mean, link_mean, length));
 | 
			
		||||
		link.object.position.copy(centre);
 | 
			
		||||
		link.object.lookAt(n2);
 | 
			
		||||
		link.object.lookAt(n2.v3);
 | 
			
		||||
		link.object.children[0].rotation.x = Math.PI / 2.0;
 | 
			
		||||
		link.object.visible = (!links_show || link.label in links_show); 
 | 
			
		||||
	}
 | 
			
		||||
@ -133,6 +143,7 @@ class FourDShape extends THREE.Group {
 | 
			
		||||
			const material = this.getMaterial(n, this.node_ms);
 | 
			
		||||
			this.nodes3[n.id] = {
 | 
			
		||||
				v3: v3,
 | 
			
		||||
				scale: k,
 | 
			
		||||
				label: n.label,
 | 
			
		||||
				object: this.makeNode(material, v3, k)
 | 
			
		||||
			};
 | 
			
		||||
@ -154,9 +165,10 @@ class FourDShape extends THREE.Group {
 | 
			
		||||
			const v4 = this.fourDrotate(n.x, n.y, n.z, n.w,  rotations);
 | 
			
		||||
			const k = this.fourDscale(v4.w);
 | 
			
		||||
			const v3 = new THREE.Vector3(v4.x * k, v4.y * k, v4.z * k);
 | 
			
		||||
			const s4 = k * this.node_scale * NODE_FORESHORTENING;
 | 
			
		||||
			const s4 = k * this.node_scale * this.foreshortening;
 | 
			
		||||
			const s3 = new THREE.Vector3(s4, s4, s4);
 | 
			
		||||
			this.nodes3[n.id].v3 = v3;
 | 
			
		||||
			this.nodes3[n.id].scale = k * this.foreshortening;
 | 
			
		||||
			this.nodes3[n.id].object.position.copy(v3);
 | 
			
		||||
			this.nodes3[n.id].object.scale.copy(s3);
 | 
			
		||||
			this.nodes3[n.id].object.visible = ( !nodes_show || n.label in nodes_show );
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										33
									
								
								gui.js
									
									
									
									
									
								
							
							
						
						
									
										33
									
								
								gui.js
									
									
									
									
									
								
							@ -2,10 +2,11 @@ import { GUI } from 'lil-gui';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const DEFAULTS = {
 | 
			
		||||
	thickness: 0.5,
 | 
			
		||||
	nodesize: 1.5,
 | 
			
		||||
	linkopacity: 0.5,
 | 
			
		||||
	link2opacity: 0.5,
 | 
			
		||||
	nodesize: 0.25,
 | 
			
		||||
	nodeopacity: 1,
 | 
			
		||||
	linksize: 0.2,
 | 
			
		||||
	linkopacity: 0.75,
 | 
			
		||||
	link2opacity: 0.75,
 | 
			
		||||
	shape: '120-cell',
 | 
			
		||||
	option: 'none',
 | 
			
		||||
	visibility: 5,
 | 
			
		||||
@ -18,6 +19,8 @@ const DEFAULTS = {
 | 
			
		||||
	xRotate: 'YW',
 | 
			
		||||
	yRotate: 'XW',
 | 
			
		||||
	dtheta: 0,
 | 
			
		||||
	damping: false,
 | 
			
		||||
	captions: true,
 | 
			
		||||
	dpsi: 0,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -25,7 +28,7 @@ const DEFAULTS = {
 | 
			
		||||
 | 
			
		||||
class FourDGUI {
 | 
			
		||||
 | 
			
		||||
	constructor(shapes, changeShape, setColor, setBackground, setLinkOpacity, setVisibility) {
 | 
			
		||||
	constructor(shapes, changeShape, setColor, setBackground, setNodeOpacity,setLinkOpacity, setVisibility, showDocs) {
 | 
			
		||||
		this.gui = new GUI();
 | 
			
		||||
		const SHAPE_NAMES = shapes.map((s) => s.name);
 | 
			
		||||
 | 
			
		||||
@ -36,10 +39,11 @@ class FourDGUI {
 | 
			
		||||
			option: this.link['option'],
 | 
			
		||||
			inscribed: this.link['inscribed'],
 | 
			
		||||
			inscribe_all: this.link['inscribe_all'],
 | 
			
		||||
			thickness: this.link['thickness'],
 | 
			
		||||
			linksize: this.link['linksize'],
 | 
			
		||||
			linkopacity: this.link['linkopacity'],
 | 
			
		||||
			link2opacity: this.link['linkopacity'],
 | 
			
		||||
			nodesize: this.link['nodesize'],
 | 
			
		||||
			nodeopacity: this.link['nodeopacity'],
 | 
			
		||||
			depth: this.link['depth'],
 | 
			
		||||
			color: this.link['color'],
 | 
			
		||||
			background: this.link['background'],
 | 
			
		||||
@ -48,6 +52,7 @@ class FourDGUI {
 | 
			
		||||
			xRotate: this.link['xRotate'],
 | 
			
		||||
			yRotate: this.link['yRotate'],
 | 
			
		||||
			damping: false,
 | 
			
		||||
			captions: true,
 | 
			
		||||
			dtheta: this.link['dtheta'],
 | 
			
		||||
			dpsi: this.link['dpsi'],
 | 
			
		||||
			"copy link": function () { guiObj.copyUrl() }
 | 
			
		||||
@ -67,18 +72,20 @@ class FourDGUI {
 | 
			
		||||
		});
 | 
			
		||||
		this.gui.add(this.params, 'hyperplane', 0.5, 1 / 0.8);
 | 
			
		||||
		this.gui.add(this.params, 'zoom', 0.1, 2.0);
 | 
			
		||||
		this.gui.add(this.params, 'thickness', 0, 1);
 | 
			
		||||
		this.gui.add(this.params, 'nodesize', 0, 1);
 | 
			
		||||
		this.gui.add(this.params, 'nodeopacity', 0, 1).onChange(setNodeOpacity);
 | 
			
		||||
		this.gui.add(this.params, 'linksize', 0, 1);
 | 
			
		||||
		this.gui.add(this.params, 'linkopacity', 0, 1).onChange(
 | 
			
		||||
			(v) => setLinkOpacity(v, true)
 | 
			
		||||
		);
 | 
			
		||||
		this.gui.add(this.params, 'link2opacity', 0, 1).onChange(
 | 
			
		||||
			(v) => setLinkOpacity(v, false)
 | 
			
		||||
		);
 | 
			
		||||
		this.gui.add(this.params, 'nodesize', 0.1, 4);
 | 
			
		||||
		this.gui.addColor(this.params, 'color').onChange(setColor);
 | 
			
		||||
		this.gui.addColor(this.params, 'background').onChange(setBackground);
 | 
			
		||||
		this.gui.add(this.params, 'xRotate', [ 'YW', 'YZ', 'ZW' ]);
 | 
			
		||||
		this.gui.add(this.params, 'yRotate', [ 'XZ', 'XY', 'XW' ]);
 | 
			
		||||
		this.gui.add(this.params, 'captions').onChange(showDocs);
 | 
			
		||||
		this.gui.add(this.params, 'damping');
 | 
			
		||||
		this.gui.add(this.params, 'copy link');
 | 
			
		||||
 | 
			
		||||
@ -134,10 +141,11 @@ class FourDGUI {
 | 
			
		||||
		}
 | 
			
		||||
		this.link['hyperplane'] = this.numParam('hyperplane', parseFloat);
 | 
			
		||||
		this.link['zoom'] = this.numParam('zoom', parseFloat);
 | 
			
		||||
		this.link['thickness'] = this.numParam('thickness', parseFloat);
 | 
			
		||||
		this.link['linksize'] = this.numParam('linksize', parseFloat);
 | 
			
		||||
		this.link['linkopacity'] = this.numParam('linkopacity', parseFloat);
 | 
			
		||||
		this.link['link2opacity'] = this.numParam('link2opacity', parseFloat);
 | 
			
		||||
		this.link['nodesize'] = this.numParam('nodesize', parseFloat);
 | 
			
		||||
		this.link['nodeopacity'] = this.numParam('nodeopacity', parseFloat);
 | 
			
		||||
		this.link['color'] = this.numParam('color', (s) => guiObj.stringToHex(s));
 | 
			
		||||
		this.link['background'] = this.numParam('background', (s) => guiObj.stringToHex(s));
 | 
			
		||||
		this.link['dpsi'] = this.numParam('dpsi', parseFloat);
 | 
			
		||||
@ -151,10 +159,11 @@ class FourDGUI {
 | 
			
		||||
		url.searchParams.append("option", this.params.option);
 | 
			
		||||
		url.searchParams.append("inscribed", this.params.inscribed ? 'y': 'n');
 | 
			
		||||
		url.searchParams.append("inscribe_all", this.params.inscribe_all ? 'y': 'n');
 | 
			
		||||
		url.searchParams.append("thickness", this.params.thickness.toString());
 | 
			
		||||
		url.searchParams.append("linksize", this.params.linksize.toString());
 | 
			
		||||
		url.searchParams.append("nodesize", this.params.nodesize.toString());
 | 
			
		||||
		url.searchParams.append("linkopacity", this.params.thickness.toString());
 | 
			
		||||
		url.searchParams.append("link2opacity", this.params.nodesize.toString());
 | 
			
		||||
		url.searchParams.append("nodeopacity", this.params.nodesize.toString());
 | 
			
		||||
		url.searchParams.append("linkopacity", this.params.nodeopacity.toString());
 | 
			
		||||
		url.searchParams.append("link2opacity", this.params.link2opacity.toString());
 | 
			
		||||
		url.searchParams.append("color", this.hexToString(this.params.color));
 | 
			
		||||
		url.searchParams.append("background", this.hexToString(this.params.background));
 | 
			
		||||
		url.searchParams.append("hyperplane", this.params.hyperplane.toString());
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										31
									
								
								main.js
									
									
									
									
									
								
							
							
						
						
									
										31
									
								
								main.js
									
									
									
									
									
								
							@ -47,11 +47,19 @@ material.opacity = 0.5;
 | 
			
		||||
const node_ms = node_colours.map((c) => new THREE.MeshStandardMaterial({color: c}));
 | 
			
		||||
const link_ms = node_colours.map((c) => new THREE.MeshStandardMaterial({color: c}));
 | 
			
		||||
 | 
			
		||||
node_ms.map((m) => {
 | 
			
		||||
	m.transparent =  true;
 | 
			
		||||
	m.opacity = 1.0;
 | 
			
		||||
	}
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
link_ms.map((m) => {
 | 
			
		||||
	m.transparent =  true;
 | 
			
		||||
	m.opacity = 0.5;
 | 
			
		||||
	}
 | 
			
		||||
)
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const face_ms = [
 | 
			
		||||
	new THREE.MeshLambertMaterial( { color: 0x44ff44 } )
 | 
			
		||||
@ -95,6 +103,16 @@ function displayDocs(name) {
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function showDocs(visible) {
 | 
			
		||||
	console.log(`showDocs ${visible}`);
 | 
			
		||||
	const docdiv = document.getElementById("description");
 | 
			
		||||
	if( visible ) {
 | 
			
		||||
		docdiv.style.display = '';
 | 
			
		||||
	} else {
 | 
			
		||||
		docdiv.style.display = 'none';
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// initialise gui and read params from URL
 | 
			
		||||
 | 
			
		||||
// callbacks to do things which are triggered by controls: reset the shape,
 | 
			
		||||
@ -125,6 +143,11 @@ function setLinkOpacity(o, primary) {
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function setNodeOpacity(o) {
 | 
			
		||||
	node_ms.map((nm) => nm.opacity = o);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
let gui; 
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -149,8 +172,10 @@ gui = new FourDGUI(
 | 
			
		||||
	changeShape,
 | 
			
		||||
	setColors,
 | 
			
		||||
	setBackground,
 | 
			
		||||
	setNodeOpacity,
 | 
			
		||||
	setLinkOpacity,
 | 
			
		||||
	setVisibility
 | 
			
		||||
	setVisibility,
 | 
			
		||||
	showDocs
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
// these are here to pick up colour settings from the URL params
 | 
			
		||||
@ -216,8 +241,8 @@ function animate() {
 | 
			
		||||
	shape.hyperplane = 1 / gui.params.hyperplane;
 | 
			
		||||
	camera.position.set(0, 0, gui.params.zoom * CAMERA_K * gui.params.hyperplane);
 | 
			
		||||
 | 
			
		||||
	shape.link_scale = gui.params.thickness;
 | 
			
		||||
	shape.node_scale = gui.params.nodesize;
 | 
			
		||||
	shape.link_scale = gui.params.linksize * gui.params.nodesize * 0.5;
 | 
			
		||||
	shape.render3(rotations, node_show, link_show);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										56
									
								
								polytopes.js
									
									
									
									
									
								
							
							
						
						
									
										56
									
								
								polytopes.js
									
									
									
									
									
								
							@ -80,10 +80,6 @@ export const cell5 = () => {
 | 
			
		||||
			{ id:9, source:3, target: 5},
 | 
			
		||||
			{ id:10, source:4, target: 5},
 | 
			
		||||
		],
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [ { name: '--' }],
 | 
			
		||||
		description: `Five tetrahedra joined at ten faces with three
 | 
			
		||||
		tetrahedra around each edge. The 5-cell is the simplest regular
 | 
			
		||||
@ -115,10 +111,6 @@ export const cell16 = () => {
 | 
			
		||||
		name: '16-cell',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [ { name: '--' }],
 | 
			
		||||
		description: `Sixteen tetrahedra joined at 32 faces with four
 | 
			
		||||
		tetrahedra around each edge. The 16-cell is the four-dimensional
 | 
			
		||||
@ -157,10 +149,6 @@ export const tesseract = () => {
 | 
			
		||||
		name: 'Tesseract',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [
 | 
			
		||||
			{ name: 'none', links: [ 0 ] },
 | 
			
		||||
			{ name: 'one 16-cell', links: [ 0, 1 ] },
 | 
			
		||||
@ -221,10 +209,6 @@ export const cell24 = () => {
 | 
			
		||||
		name: '24-cell',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		base: {},
 | 
			
		||||
		options: [
 | 
			
		||||
			{ name: 'none', links: [ 0 ] },
 | 
			
		||||
@ -412,10 +396,6 @@ export const cell120_layered = (max) => {
 | 
			
		||||
		name: '120-cell layered',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		nolink2opacity: true,
 | 
			
		||||
		options: options,
 | 
			
		||||
		description: `This version of the 120-cell lets you explore its
 | 
			
		||||
@ -447,10 +427,6 @@ export const cell120_inscribed = () => {
 | 
			
		||||
		name: '120-cell',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [
 | 
			
		||||
			{ name: "none", links: [ 0 ]},
 | 
			
		||||
			{ name: "one inscribed 600-cell", links: [ 0, 1 ] },
 | 
			
		||||
@ -582,10 +558,6 @@ export const cell600 = () => {
 | 
			
		||||
		name: '600-cell',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [
 | 
			
		||||
			{ name: "none", links: [ 0 ]},
 | 
			
		||||
			{ name: "one 24-cell", links: [ 0, 1 ] },
 | 
			
		||||
@ -635,10 +607,6 @@ export const cell600_layered = () => {
 | 
			
		||||
		name: '600-cell layered',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		nolink2opacity: true,
 | 
			
		||||
		options: options,
 | 
			
		||||
		description: `This version of the 600-cell lets you explore its
 | 
			
		||||
@ -666,10 +634,6 @@ export const snub24cell = () => {
 | 
			
		||||
		name: 'Snub 24-cell',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [ { name: "--" } ],
 | 
			
		||||
		description: `The snub 24-cell is a semiregular polytope which
 | 
			
		||||
		connects the 24-cell with the 600-cell. It consists of 24 icosahedra
 | 
			
		||||
@ -736,10 +700,6 @@ export const dodecahedron = () => {
 | 
			
		||||
		name: 'Dodecahedron',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [
 | 
			
		||||
			{ name: "none", links: [ 0 ]},
 | 
			
		||||
			{ name: "one tetrahedron", links: [ 0, 1 ] },
 | 
			
		||||
@ -774,10 +734,6 @@ export const tetrahedron = () => {
 | 
			
		||||
			{ id:5, source:2, target: 4},
 | 
			
		||||
			{ id:6, source:3, target: 4},
 | 
			
		||||
		],
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [ { name: '--' }],
 | 
			
		||||
		description: `The simplest three-dimensional polytope, consisting of four triangles joined at six edges. The 5-cell is its four-dimensional analogue.`,
 | 
			
		||||
	};
 | 
			
		||||
@ -811,10 +767,6 @@ export const octahedron = () => {
 | 
			
		||||
		name: 'Octahedron',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [ { name: '--' }],
 | 
			
		||||
		description: `The three-dimensional cross-polytope, the 16-cell is its four-dimensional analogue.`,
 | 
			
		||||
	};
 | 
			
		||||
@ -839,10 +791,6 @@ export const cube = () => {
 | 
			
		||||
		name: 'Cube',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [ { name: '--' }],
 | 
			
		||||
		description: `The three-dimensional measure polytope, the tesseract is its four-dimensional analogue.`,
 | 
			
		||||
	};
 | 
			
		||||
@ -885,10 +833,6 @@ export const icosahedron = () => {
 | 
			
		||||
		name: 'Icosahedron',
 | 
			
		||||
		nodes: nodes,
 | 
			
		||||
		links: links,
 | 
			
		||||
		geometry: {
 | 
			
		||||
			node_size: 0.02,
 | 
			
		||||
			link_size: 0.02
 | 
			
		||||
		},
 | 
			
		||||
		options: [
 | 
			
		||||
			{ name: "--"},
 | 
			
		||||
		],
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user