Fixed bug which gave 600-cell too many edges
parent
1bd838dd74
commit
13510c1ac1
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue