Geometries.js 1.6 KB

12345678910111213141516171819202122
  1. export { WireframeGeometry } from './WireframeGeometry.js';
  2. export { ParametricGeometry, ParametricBufferGeometry } from './ParametricGeometry.js';
  3. export { TetrahedronGeometry, TetrahedronBufferGeometry } from './TetrahedronGeometry.js';
  4. export { OctahedronGeometry, OctahedronBufferGeometry } from './OctahedronGeometry.js';
  5. export { IcosahedronGeometry, IcosahedronBufferGeometry } from './IcosahedronGeometry.js';
  6. export { DodecahedronGeometry, DodecahedronBufferGeometry } from './DodecahedronGeometry.js';
  7. export { PolyhedronGeometry, PolyhedronBufferGeometry } from './PolyhedronGeometry.js';
  8. export { TubeGeometry, TubeBufferGeometry } from './TubeGeometry.js';
  9. export { TorusKnotGeometry, TorusKnotBufferGeometry } from './TorusKnotGeometry.js';
  10. export { TorusGeometry, TorusBufferGeometry } from './TorusGeometry.js';
  11. export { TextGeometry, TextBufferGeometry } from './TextGeometry.js';
  12. export { SphereGeometry, SphereBufferGeometry } from './SphereGeometry.js';
  13. export { RingGeometry, RingBufferGeometry } from './RingGeometry.js';
  14. export { PlaneGeometry, PlaneBufferGeometry } from './PlaneGeometry.js';
  15. export { LatheGeometry, LatheBufferGeometry } from './LatheGeometry.js';
  16. export { ShapeGeometry, ShapeBufferGeometry } from './ShapeGeometry.js';
  17. export { ExtrudeGeometry, ExtrudeBufferGeometry } from './ExtrudeGeometry.js';
  18. export { EdgesGeometry } from './EdgesGeometry.js';
  19. export { ConeGeometry, ConeBufferGeometry } from './ConeGeometry.js';
  20. export { CylinderGeometry, CylinderBufferGeometry } from './CylinderGeometry.js';
  21. export { CircleGeometry, CircleBufferGeometry } from './CircleGeometry.js';
  22. export { BoxGeometry, BoxBufferGeometry } from './BoxGeometry.js';