Fixed bug which gave 600-cell too many edges

feature-faces
Mike Lynch 2023-07-30 11:46:13 +10:00
parent 1bd838dd74
commit 13510c1ac1
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ function make_600cell_vertices() {
export const cell600 = () => { export const cell600 = () => {
const nodes = make_600cell_vertices(); const nodes = make_600cell_vertices();
const links = auto_detect_edges(nodes, 20); const links = auto_detect_edges(nodes, 12);
return { return {
nodes: nodes, nodes: nodes,
links: links, links: links,