2024-06-29 12:48:51 -04:00
|
|
|
import * as THREE from "../node_modules/three/build/three.module.js";
|
|
|
|
|
import * as SVGLoader from "../node_modules/three/examples/jsm/loaders/SVGLoader.js";
|
|
|
|
|
import * as BufferGeometryUtils from "../node_modules/three/examples/jsm/utils/BufferGeometryUtils.js";
|
|
|
|
|
|
2024-07-21 22:36:37 -04:00
|
|
|
import { Line2 } from '../node_modules/three/examples/jsm/lines/Line2.js';
|
|
|
|
|
import { LineMaterial } from '../node_modules/three/examples/jsm/lines/LineMaterial.js';
|
|
|
|
|
import { LineGeometry } from '../node_modules/three/examples/jsm/lines/LineGeometry.js';
|
|
|
|
|
import { LineSegments2 } from '../node_modules/three/examples/jsm/lines/LineSegments2.js';
|
2024-08-16 15:10:55 -04:00
|
|
|
import { LineSegmentsGeometry } from '../node_modules/three/examples/jsm/lines/LineSegmentsGeometry.js';
|
2024-07-21 22:36:37 -04:00
|
|
|
|
2025-07-09 01:18:29 -04:00
|
|
|
import * as MeshBVHLib from '../node_modules/three-mesh-bvh/build/index.module.js';
|
|
|
|
|
|
2024-08-16 15:10:55 -04:00
|
|
|
export {
|
2025-07-09 01:18:29 -04:00
|
|
|
THREE,
|
|
|
|
|
SVGLoader,
|
|
|
|
|
BufferGeometryUtils,
|
2024-08-16 15:10:55 -04:00
|
|
|
LineMaterial,
|
2025-07-09 01:18:29 -04:00
|
|
|
Line2,
|
|
|
|
|
LineGeometry,
|
|
|
|
|
LineSegments2,
|
|
|
|
|
LineSegmentsGeometry,
|
|
|
|
|
MeshBVHLib
|
|
|
|
|
};
|