Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
InventivetalentDev committed Nov 8, 2023
1 parent 9ba962d commit cf605ad
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ export * from "./util/BatchedExecutor"

// export * from "./three/BufferGeometryUtils.js"
// export * from "./three/OrbitControls.js"
export * from './three'
export * from './util'
5 changes: 5 additions & 0 deletions src/model/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export * from './Model'
export * from './DisplayPosition'
export * from './ModelElement'
export * from './ModelMerger'
export * from './ModelPart'
2 changes: 1 addition & 1 deletion src/three/OrbitControls.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Camera, MOUSE, TOUCH, Vector3 } from '../../../src/Three';
import { Camera, MOUSE, TOUCH, Vector3 } from 'three';

export class OrbitControls {
constructor(object: Camera, domElement?: HTMLElement);
Expand Down
2 changes: 2 additions & 0 deletions src/three/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './BufferGeometryUtils'
export * from './OrbitControls'
3 changes: 3 additions & 0 deletions src/util/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './util'
export * from './BatchedExecutor'
export * from './three'

0 comments on commit cf605ad

Please sign in to comment.