-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathindex.ts
More file actions
17 lines (16 loc) · 636 Bytes
/
index.ts
File metadata and controls
17 lines (16 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
* @author Stefan Nieke (Niekes)
* @description http://niekes.com
*/
export { cubes3D } from './src/shapes/cubes';
export { gridPlanes3D } from './src/shapes/gridPlanes';
export { lines3D } from './src/shapes/lines';
export { lineStrips3D } from './src/shapes/lineStrips';
export { planes3D } from './src/shapes/planes';
export { points3D } from './src/shapes/points';
export { polygons3D } from './src/shapes/polygons';
export { triangles3D } from './src/shapes/triangles';
export { sort } from './src/sort';
export { ccw } from './src/counter-clockwise';
export { centroid } from './src/centroid';
export * from './src/types';