diff options
Diffstat (limited to 'app_expo/data/randomdata.tsx')
-rw-r--r-- | app_expo/data/randomdata.tsx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/app_expo/data/randomdata.tsx b/app_expo/data/randomdata.tsx deleted file mode 100644 index 844f36f..0000000 --- a/app_expo/data/randomdata.tsx +++ /dev/null @@ -1,11 +0,0 @@ -export default function genRandomTree(N = 300, reverse = false) { - return { - nodes: [...Array(N).keys()].map((i) => ({ id: i })), - links: [...Array(N).keys()] - .filter((id) => id) - .map((id) => ({ - [reverse ? 'target' : 'source']: id, - [reverse ? 'source' : 'target']: Math.round(Math.random() * (id - 1)), - })), - } -} |