Files
plantplan/client/src/shapes/shape-config.ts
T

27 lines
449 B
TypeScript

/**
* Zentrale Konfiguration für alle Custom Shapes.
* Defaults, Minima und Maxima an einer Stelle gepflegt.
*/
// Angaben in cm
export const PUFFER_CONFIG = {
// Defaults
defaultW: 240,
defaultH: 150,
// Minima
minW: 240,
minH: 150,
// Maxima
maxW: 4000,
maxH: 20000,
}
export const KREISEL_CONFIG = {
// Defaults
defaultAbstand: 200,
defaultRadius: 80,
// Minima
minAbstand: 180,
// Maxima
maxAbstand: 4000,
}