Try repeat

This commit is contained in:
Халимов Рустам
2025-12-27 23:46:13 +03:00
parent ac00068175
commit 929e071ea7
4 changed files with 299 additions and 181 deletions

View File

@@ -11,9 +11,17 @@ export interface AppConfig {
cornerRadius: number;
}
// Новая структура: настройки деления внутри одной ячейки
export interface CellSubdivision {
rows: number; // горизонтальные ряды
cols: number; // вертикальные колонки
}
export interface LayoutSplits {
x: number[];
y: number[];
// Ключ: "indexX-indexY" (например "0-0"), Значение: {rows: 2, cols: 1}
subdivisions: Record<string, CellSubdivision>;
}
export interface GeneratedPart {