layers tree I

This commit is contained in:
2025-11-11 23:31:22 +01:00
parent 4092b12aef
commit ae02080563
5 changed files with 176 additions and 18 deletions

View File

@@ -190,12 +190,7 @@ export default function Graph({ setGraphPath }: { setGraphPath: React.Dispatch<R
}
function getRandomWords(count: number) {
const wordList = [
"apple", "river", "mountain", "sky", "storm", "ocean", "forest", "dream",
"stone", "flame", "shadow", "cloud", "leaf", "wind", "fire", "earth",
"flower", "bird", "light", "night", "sun", "rain", "snow", "tree",
"wolf", "star", "sand", "wave", "heart", "path"
];
const wordList = ['Apple', 'Sun', 'Flame', 'Earth', 'Forest', 'Dream', 'Sky', 'Shadow', 'Flower', 'Ocean', 'River', 'Path', 'Sand', 'Night', 'Star', 'Rain', 'Light', 'Tree', 'Wave', 'Storm', 'Stone', 'Snow', 'Cloud', 'Heart', 'Mountain', 'Leaf', 'Bird', 'Wind', 'Fire', 'Wolf'];
return wordList
.sort(() => Math.random() - 0.5)