mirror of
https://mgit.msbls.de/mAi/house-design.git
synced 2026-04-09 07:52:02 +00:00
Covers DesignState (40 tests), HouseRenderer (19), InteractionManager (24), ThemeManager (8), ExportManager (11), and CatalogPanel (30). Uses vitest with THREE.js mocks for browser-free testing.
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
export class OrbitControls {
|
|
constructor() {
|
|
this.target = { set: () => {} };
|
|
this.enableDamping = false;
|
|
this.dampingFactor = 0;
|
|
this.enabled = true;
|
|
}
|
|
update() {}
|
|
dispose() {}
|
|
}
|