1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 20:32:02 +08:00
trois/src/meshes/index.js

22 lines
1023 B
JavaScript
Raw Normal View History

2020-09-14 22:57:11 +08:00
export { default as Box } from './Box.js';
2020-09-28 21:00:10 +08:00
export { default as Circle } from './Circle.js';
export { default as Cone } from './Cone.js';
export { default as Cylinder } from './Cylinder.js';
export { default as Dodecahedron } from './Dodecahedron.js';
export { default as Icosahedron } from './Icosahedron.js';
export { default as Lathe } from './Lathe.js';
export { default as Octahedron } from './Octahedron.js';
2020-09-16 01:50:51 +08:00
export { default as Plane } from './Plane.js';
2020-09-28 21:00:10 +08:00
export { default as Polyhedron } from './Polyhedron.js';
export { default as Ring } from './Ring.js';
2020-09-14 22:57:11 +08:00
export { default as Sphere } from './Sphere.js';
2020-09-28 21:00:10 +08:00
export { default as Tetrahedron } from './Tetrahedron.js';
2020-09-18 04:37:19 +08:00
export { default as Text } from './Text.js';
2020-09-28 21:00:10 +08:00
export { default as Torus } from './Torus.js';
export { default as TorusKnot } from './TorusKnot.js';
export { default as Tube } from './Tube.js';
2020-09-15 06:07:46 +08:00
2020-09-28 21:00:10 +08:00
export { default as Image } from './Image.js';
2020-09-15 06:07:46 +08:00
export { default as InstancedMesh } from './InstancedMesh.js';
2020-09-19 18:16:16 +08:00
export { default as Sprite } from './Sprite.js';