This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { BaseController } from './BaseController.js'; | |
| import * as config from '../app/Config.js'; | |
| import * as geo from '../engine/UnifiedGeometry.js'; | |
| import { getDistanceSq } from '../engine/UnifiedGeometry.js'; | |
| import { getRoomContainmentPolygon } from '../walls/RoomCycleSolver.js'; | |
| import { isArc } from '../walls/WallCore.js'; | |
| import { round2 } from '../app/Helpers.js'; | |
| const KITCHEN_L_ROLE = config.KITCHEN_L_SHAPE_ROLE; | |
| const KITCHEN_COUNTERTOP_ROLES = new Set(config.KITCHEN_COUNTERTOP_FURNITURE_ROLES); |