erste Funktionierende Fassung

This commit is contained in:
mistangl
2026-04-16 16:31:23 +02:00
parent f75eaa724c
commit 36e2d81843
9 changed files with 5214 additions and 20 deletions
+26
View File
@@ -0,0 +1,26 @@
/**
* Zentrale Konfiguration für alle Custom Shapes.
* Defaults, Minima und Maxima an einer Stelle gepflegt.
*/
export const PUFFER_CONFIG = {
// Defaults
defaultW: 120,
defaultH: 60,
// Minima
minW: 20,
minH: 20,
// Maxima
maxW: 500,
maxH: 300,
}
export const KREISEL_CONFIG = {
// Defaults
defaultAbstand: 200,
defaultRadius: 80,
// Minima
minAbstand: 20,
// Maxima
maxAbstand: 4000,
}