clean: remove obsolete repair debug code + unused core utilities

This commit is contained in:
Tom Boullay
2026-05-08 02:07:03 +01:00
parent 6cf49e2dd1
commit 1a4c5cdc5e
34 changed files with 144 additions and 797 deletions
@@ -1,15 +1,12 @@
import type { ReactNode } from "react";
import { Component } from "react";
import { SimpleModel } from "@/components/three/models/SimpleModel";
import type { Vector3Scale, Vector3Tuple } from "@/types/three/three";
import type { ModelTransformProps } from "@/types/three/three";
import { logModelLoadError } from "@/utils/three/modelLoadLogger";
interface RepairObjectModelProps {
interface RepairObjectModelProps extends ModelTransformProps {
label: string;
modelPath: string;
position?: Vector3Tuple;
rotation?: Vector3Tuple;
scale?: Vector3Scale;
}
interface RepairObjectModelBoundaryProps extends RepairObjectModelProps {