Clean start: remove large .spp files from history

This commit is contained in:
2026-02-21 16:06:11 +03:00
commit a600a7ad21
11 changed files with 2720 additions and 0 deletions

12
js/camera.js Normal file
View File

@@ -0,0 +1,12 @@
import * as THREE from 'three';
export const camera = new THREE.PerspectiveCamera(
27,
window.innerWidth / window.innerHeight,
0.1,
1000
);
// Камера смотрит в комнату через открытую стену
camera.position.set(0, 0, 0);
camera.lookAt(0, 0, 0);