feat: improve zoom performance by adding a tiny rand offset to nodes

This commit is contained in:
2024-04-18 14:10:08 +02:00
parent 06ba3a8fe9
commit c33e2642e1
7 changed files with 178 additions and 168 deletions

View File

@ -8,6 +8,7 @@ export type Node = {
tmp?: {
depth?: number;
mesh?: any;
random?: number;
parents?: Node[],
children?: Node[],
inputNodes?: Record<string, Node>