diff --git a/app/three/utils/build-clipping-planes.ts b/app/three/utils/build-clipping-planes.ts index a9e24cd..ec5a083 100644 --- a/app/three/utils/build-clipping-planes.ts +++ b/app/three/utils/build-clipping-planes.ts @@ -25,7 +25,7 @@ import { MeshStandardNodeMaterial, WebGPURenderer, } from "three/webgpu"; -import { color, vec4 } from "three/tsl"; +import { color } from "three/tsl"; export enum Orientation { X = "X", diff --git a/app/three/utils/build-meshes.ts b/app/three/utils/build-meshes.ts index b0f59cb..04d04c0 100644 --- a/app/three/utils/build-meshes.ts +++ b/app/three/utils/build-meshes.ts @@ -1,16 +1,10 @@ -import { - BufferAttribute, - BufferGeometry, - Color, - DoubleSide, - Mesh, -} from "three"; +import { BufferAttribute, BufferGeometry, DoubleSide, Mesh } from "three"; import { fetchVertices, fetchTriangleIndices, transform } from "./utils"; import { TRIANGLE_INDICES_URL, VERTICES_URL } from "../config"; import { topoNodeMaterial } from "../ShaderMaterial"; import { MeshStandardNodeMaterial } from "three/webgpu"; -import { color, vec4 } from "three/tsl"; +import { color } from "three/tsl"; interface MappedFeature { featuregeom_id: number;