angular-three 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (400) hide show
  1. package/attributes/README.md +3 -0
  2. package/attributes/index.d.ts +22 -0
  3. package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +8 -0
  4. package/attributes/lib/color-attribute/color-attribute.d.ts +8 -0
  5. package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +8 -0
  6. package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +8 -0
  7. package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +8 -0
  8. package/attributes/lib/fog-attribute/fog-attribute.d.ts +8 -0
  9. package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +8 -0
  10. package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +8 -0
  11. package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +8 -0
  12. package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +8 -0
  13. package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +8 -0
  14. package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +8 -0
  15. package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +8 -0
  16. package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +8 -0
  17. package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +8 -0
  18. package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +8 -0
  19. package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +8 -0
  20. package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +8 -0
  21. package/attributes/lib/value-attribute/value-attribute.d.ts +8 -0
  22. package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +8 -0
  23. package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +8 -0
  24. package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +8 -0
  25. package/audios/README.md +3 -0
  26. package/audios/index.d.ts +3 -0
  27. package/audios/lib/audio/audio.d.ts +49 -0
  28. package/audios/lib/audio-listener/audio-listener.d.ts +35 -0
  29. package/audios/lib/positional-audio/positional-audio.d.ts +49 -0
  30. package/cameras/README.md +3 -0
  31. package/cameras/index.d.ts +5 -0
  32. package/cameras/lib/array-camera/array-camera.d.ts +56 -0
  33. package/cameras/lib/cube-camera/cube-camera.d.ts +36 -0
  34. package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +54 -0
  35. package/cameras/lib/perspective-camera/perspective-camera.d.ts +55 -0
  36. package/cameras/lib/stereo-camera/stereo-camera.d.ts +42 -0
  37. package/esm2020/attributes/angular-three-attributes.mjs +5 -0
  38. package/esm2020/attributes/index.mjs +24 -0
  39. package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +25 -0
  40. package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +25 -0
  41. package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +25 -0
  42. package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +25 -0
  43. package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +25 -0
  44. package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +25 -0
  45. package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +25 -0
  46. package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +25 -0
  47. package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +25 -0
  48. package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +25 -0
  49. package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +25 -0
  50. package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +29 -0
  51. package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +25 -0
  52. package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +25 -0
  53. package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +25 -0
  54. package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +25 -0
  55. package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +25 -0
  56. package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +25 -0
  57. package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +27 -0
  58. package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +25 -0
  59. package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +25 -0
  60. package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +25 -0
  61. package/esm2020/audios/angular-three-audios.mjs +5 -0
  62. package/esm2020/audios/index.mjs +5 -0
  63. package/esm2020/audios/lib/audio/audio.mjs +68 -0
  64. package/esm2020/audios/lib/audio-listener/audio-listener.mjs +65 -0
  65. package/esm2020/audios/lib/positional-audio/positional-audio.mjs +68 -0
  66. package/esm2020/cameras/angular-three-cameras.mjs +5 -0
  67. package/esm2020/cameras/index.mjs +7 -0
  68. package/esm2020/cameras/lib/array-camera/array-camera.mjs +67 -0
  69. package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +55 -0
  70. package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +65 -0
  71. package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +66 -0
  72. package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +61 -0
  73. package/esm2020/geometries/angular-three-geometries.mjs +5 -0
  74. package/esm2020/geometries/index.mjs +25 -0
  75. package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +25 -0
  76. package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +25 -0
  77. package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +25 -0
  78. package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +25 -0
  79. package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +25 -0
  80. package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +25 -0
  81. package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +25 -0
  82. package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +25 -0
  83. package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +25 -0
  84. package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +25 -0
  85. package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +25 -0
  86. package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +25 -0
  87. package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +25 -0
  88. package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +25 -0
  89. package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +25 -0
  90. package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +25 -0
  91. package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +25 -0
  92. package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +25 -0
  93. package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +25 -0
  94. package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +25 -0
  95. package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +25 -0
  96. package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +25 -0
  97. package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +25 -0
  98. package/esm2020/helpers/angular-three-helpers.mjs +5 -0
  99. package/esm2020/helpers/index.mjs +15 -0
  100. package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +25 -0
  101. package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +25 -0
  102. package/esm2020/helpers/lib/box-helper/box-helper.mjs +35 -0
  103. package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +35 -0
  104. package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +35 -0
  105. package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +35 -0
  106. package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +25 -0
  107. package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +35 -0
  108. package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +35 -0
  109. package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +35 -0
  110. package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +25 -0
  111. package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +35 -0
  112. package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +35 -0
  113. package/esm2020/index.mjs +39 -2
  114. package/esm2020/lib/canvas.mjs +229 -0
  115. package/esm2020/lib/di/resize.mjs +19 -0
  116. package/esm2020/lib/di/window.mjs +13 -0
  117. package/esm2020/lib/directives/args.mjs +30 -0
  118. package/esm2020/lib/directives/cursor.mjs +35 -0
  119. package/esm2020/lib/directives/repeat.mjs +20 -0
  120. package/esm2020/lib/events.mjs +53 -0
  121. package/esm2020/lib/instance.mjs +368 -0
  122. package/esm2020/lib/pipes/math.mjs +15 -0
  123. package/esm2020/lib/pipes/pi.mjs +14 -0
  124. package/esm2020/lib/pipes/radian.mjs +14 -0
  125. package/esm2020/lib/pipes/side.mjs +22 -0
  126. package/esm2020/lib/ref.mjs +15 -0
  127. package/esm2020/lib/services/loader.mjs +45 -0
  128. package/esm2020/lib/services/resize.mjs +127 -0
  129. package/esm2020/lib/stores/component-store.mjs +137 -0
  130. package/esm2020/lib/stores/store.mjs +433 -0
  131. package/esm2020/lib/types.mjs +2 -0
  132. package/esm2020/lib/utils/apply-props.mjs +135 -0
  133. package/esm2020/lib/utils/build-graph.mjs +15 -0
  134. package/esm2020/lib/utils/camera.mjs +28 -0
  135. package/esm2020/lib/utils/capitalize.mjs +4 -0
  136. package/esm2020/lib/utils/check-update.mjs +22 -0
  137. package/esm2020/lib/utils/events.mjs +353 -0
  138. package/esm2020/lib/utils/get-instance-local-state.mjs +6 -0
  139. package/esm2020/lib/utils/inject.mjs +18 -0
  140. package/esm2020/lib/utils/instance.mjs +35 -0
  141. package/esm2020/lib/utils/is.mjs +54 -0
  142. package/esm2020/lib/utils/loop.mjs +139 -0
  143. package/esm2020/lib/utils/make.mjs +30 -0
  144. package/esm2020/lib/utils/mutate.mjs +24 -0
  145. package/esm2020/lib/utils/proxy.mjs +99 -0
  146. package/esm2020/lib/utils/renderer.mjs +15 -0
  147. package/esm2020/lights/angular-three-lights.mjs +5 -0
  148. package/esm2020/lights/index.mjs +11 -0
  149. package/esm2020/lights/lib/ambient-light/ambient-light.mjs +58 -0
  150. package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +59 -0
  151. package/esm2020/lights/lib/directional-light/directional-light.mjs +59 -0
  152. package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +60 -0
  153. package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +61 -0
  154. package/esm2020/lights/lib/light-probe/light-probe.mjs +59 -0
  155. package/esm2020/lights/lib/point-light/point-light.mjs +61 -0
  156. package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +61 -0
  157. package/esm2020/lights/lib/spot-light/spot-light.mjs +64 -0
  158. package/esm2020/materials/angular-three-materials.mjs +5 -0
  159. package/esm2020/materials/index.mjs +19 -0
  160. package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +76 -0
  161. package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +79 -0
  162. package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +88 -0
  163. package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +79 -0
  164. package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +79 -0
  165. package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +99 -0
  166. package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +85 -0
  167. package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +82 -0
  168. package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +102 -0
  169. package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +118 -0
  170. package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +99 -0
  171. package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +95 -0
  172. package/esm2020/materials/lib/points-material/points-material.mjs +77 -0
  173. package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +82 -0
  174. package/esm2020/materials/lib/shader-material/shader-material.mjs +82 -0
  175. package/esm2020/materials/lib/shadow-material/shadow-material.mjs +73 -0
  176. package/esm2020/materials/lib/sprite-material/sprite-material.mjs +77 -0
  177. package/esm2020/objects/angular-three-objects.mjs +5 -0
  178. package/esm2020/objects/index.mjs +14 -0
  179. package/esm2020/objects/lib/bone/bone.mjs +54 -0
  180. package/esm2020/objects/lib/group/group.mjs +54 -0
  181. package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +63 -0
  182. package/esm2020/objects/lib/line/line.mjs +58 -0
  183. package/esm2020/objects/lib/line-loop/line-loop.mjs +58 -0
  184. package/esm2020/objects/lib/line-segments/line-segments.mjs +58 -0
  185. package/esm2020/objects/lib/lod/lod.mjs +56 -0
  186. package/esm2020/objects/lib/mesh/mesh.mjs +58 -0
  187. package/esm2020/objects/lib/points/points.mjs +58 -0
  188. package/esm2020/objects/lib/skeleton/skeleton.mjs +40 -0
  189. package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +62 -0
  190. package/esm2020/objects/lib/sprite/sprite.mjs +57 -0
  191. package/esm2020/primitives/angular-three-primitives.mjs +5 -0
  192. package/esm2020/primitives/index.mjs +3 -0
  193. package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +54 -0
  194. package/esm2020/primitives/lib/primitive/primitive.mjs +37 -0
  195. package/esm2020/stats/angular-three-stats.mjs +5 -0
  196. package/esm2020/stats/index.mjs +2 -0
  197. package/esm2020/stats/lib/stats/stats.mjs +54 -0
  198. package/esm2020/textures/angular-three-textures.mjs +5 -0
  199. package/esm2020/textures/index.mjs +12 -0
  200. package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +25 -0
  201. package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +25 -0
  202. package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +25 -0
  203. package/esm2020/textures/lib/cube-texture/cube-texture.mjs +25 -0
  204. package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +25 -0
  205. package/esm2020/textures/lib/data-texture/data-texture.mjs +25 -0
  206. package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +25 -0
  207. package/esm2020/textures/lib/depth-texture/depth-texture.mjs +25 -0
  208. package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +25 -0
  209. package/esm2020/textures/lib/video-texture/video-texture.mjs +25 -0
  210. package/fesm2015/angular-three-attributes.mjs +462 -0
  211. package/fesm2015/angular-three-attributes.mjs.map +1 -0
  212. package/fesm2015/angular-three-audios.mjs +201 -0
  213. package/fesm2015/angular-three-audios.mjs.map +1 -0
  214. package/fesm2015/angular-three-cameras.mjs +304 -0
  215. package/fesm2015/angular-three-cameras.mjs.map +1 -0
  216. package/fesm2015/angular-three-geometries.mjs +475 -0
  217. package/fesm2015/angular-three-geometries.mjs.map +1 -0
  218. package/fesm2015/angular-three-helpers.mjs +365 -0
  219. package/fesm2015/angular-three-helpers.mjs.map +1 -0
  220. package/fesm2015/angular-three-lights.mjs +511 -0
  221. package/fesm2015/angular-three-lights.mjs.map +1 -0
  222. package/fesm2015/angular-three-materials.mjs +1402 -0
  223. package/fesm2015/angular-three-materials.mjs.map +1 -0
  224. package/fesm2015/angular-three-objects.mjs +630 -0
  225. package/fesm2015/angular-three-objects.mjs.map +1 -0
  226. package/fesm2015/angular-three-primitives.mjs +95 -0
  227. package/fesm2015/angular-three-primitives.mjs.map +1 -0
  228. package/fesm2015/angular-three-stats.mjs +62 -0
  229. package/fesm2015/angular-three-stats.mjs.map +1 -0
  230. package/fesm2015/angular-three-textures.mjs +215 -0
  231. package/fesm2015/angular-three-textures.mjs.map +1 -0
  232. package/fesm2015/angular-three.mjs +2448 -10
  233. package/fesm2015/angular-three.mjs.map +1 -1
  234. package/fesm2020/angular-three-attributes.mjs +462 -0
  235. package/fesm2020/angular-three-attributes.mjs.map +1 -0
  236. package/fesm2020/angular-three-audios.mjs +201 -0
  237. package/fesm2020/angular-three-audios.mjs.map +1 -0
  238. package/fesm2020/angular-three-cameras.mjs +304 -0
  239. package/fesm2020/angular-three-cameras.mjs.map +1 -0
  240. package/fesm2020/angular-three-geometries.mjs +475 -0
  241. package/fesm2020/angular-three-geometries.mjs.map +1 -0
  242. package/fesm2020/angular-three-helpers.mjs +365 -0
  243. package/fesm2020/angular-three-helpers.mjs.map +1 -0
  244. package/fesm2020/angular-three-lights.mjs +511 -0
  245. package/fesm2020/angular-three-lights.mjs.map +1 -0
  246. package/fesm2020/angular-three-materials.mjs +1402 -0
  247. package/fesm2020/angular-three-materials.mjs.map +1 -0
  248. package/fesm2020/angular-three-objects.mjs +630 -0
  249. package/fesm2020/angular-three-objects.mjs.map +1 -0
  250. package/fesm2020/angular-three-primitives.mjs +95 -0
  251. package/fesm2020/angular-three-primitives.mjs.map +1 -0
  252. package/fesm2020/angular-three-stats.mjs +62 -0
  253. package/fesm2020/angular-three-stats.mjs.map +1 -0
  254. package/fesm2020/angular-three-textures.mjs +215 -0
  255. package/fesm2020/angular-three-textures.mjs.map +1 -0
  256. package/fesm2020/angular-three.mjs +2462 -10
  257. package/fesm2020/angular-three.mjs.map +1 -1
  258. package/geometries/README.md +3 -0
  259. package/geometries/index.d.ts +23 -0
  260. package/geometries/lib/box-geometry/box-geometry.d.ts +8 -0
  261. package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +8 -0
  262. package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +8 -0
  263. package/geometries/lib/circle-geometry/circle-geometry.d.ts +8 -0
  264. package/geometries/lib/cone-geometry/cone-geometry.d.ts +8 -0
  265. package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +8 -0
  266. package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +8 -0
  267. package/geometries/lib/edges-geometry/edges-geometry.d.ts +8 -0
  268. package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +8 -0
  269. package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +8 -0
  270. package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +8 -0
  271. package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +8 -0
  272. package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +8 -0
  273. package/geometries/lib/plane-geometry/plane-geometry.d.ts +8 -0
  274. package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +8 -0
  275. package/geometries/lib/ring-geometry/ring-geometry.d.ts +8 -0
  276. package/geometries/lib/shape-geometry/shape-geometry.d.ts +8 -0
  277. package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +8 -0
  278. package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +8 -0
  279. package/geometries/lib/torus-geometry/torus-geometry.d.ts +8 -0
  280. package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +8 -0
  281. package/geometries/lib/tube-geometry/tube-geometry.d.ts +8 -0
  282. package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +8 -0
  283. package/helpers/README.md +3 -0
  284. package/helpers/index.d.ts +13 -0
  285. package/helpers/lib/arrow-helper/arrow-helper.d.ts +8 -0
  286. package/helpers/lib/axes-helper/axes-helper.d.ts +8 -0
  287. package/helpers/lib/box-helper/box-helper.d.ts +8 -0
  288. package/helpers/lib/box3-helper/box3-helper.d.ts +8 -0
  289. package/helpers/lib/camera-helper/camera-helper.d.ts +8 -0
  290. package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +8 -0
  291. package/helpers/lib/grid-helper/grid-helper.d.ts +8 -0
  292. package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +8 -0
  293. package/helpers/lib/plane-helper/plane-helper.d.ts +8 -0
  294. package/helpers/lib/point-light-helper/point-light-helper.d.ts +8 -0
  295. package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +8 -0
  296. package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +8 -0
  297. package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +8 -0
  298. package/index.d.ts +38 -1
  299. package/lib/canvas.d.ts +46 -0
  300. package/lib/di/resize.d.ts +12 -0
  301. package/lib/di/window.d.ts +1 -0
  302. package/lib/directives/args.d.ts +19 -0
  303. package/lib/directives/cursor.d.ts +7 -0
  304. package/lib/directives/repeat.d.ts +7 -0
  305. package/lib/events.d.ts +2 -0
  306. package/lib/instance.d.ts +81 -0
  307. package/lib/pipes/math.d.ts +7 -0
  308. package/lib/pipes/pi.d.ts +7 -0
  309. package/lib/pipes/radian.d.ts +7 -0
  310. package/lib/pipes/side.d.ts +8 -0
  311. package/lib/ref.d.ts +5 -0
  312. package/lib/services/loader.d.ts +11 -0
  313. package/lib/services/resize.d.ts +19 -0
  314. package/lib/stores/component-store.d.ts +69 -0
  315. package/lib/stores/store.d.ts +32 -0
  316. package/lib/types.d.ts +358 -0
  317. package/lib/utils/apply-props.d.ts +6 -0
  318. package/lib/utils/build-graph.d.ts +3 -0
  319. package/lib/utils/camera.d.ts +4 -0
  320. package/lib/utils/capitalize.d.ts +1 -0
  321. package/lib/utils/check-update.d.ts +2 -0
  322. package/lib/utils/events.d.ts +6 -0
  323. package/lib/utils/get-instance-local-state.d.ts +2 -0
  324. package/lib/utils/inject.d.ts +9 -0
  325. package/lib/utils/instance.d.ts +4 -0
  326. package/lib/utils/is.d.ts +21 -0
  327. package/lib/utils/loop.d.ts +32 -0
  328. package/lib/utils/make.d.ts +4 -0
  329. package/lib/utils/mutate.d.ts +2 -0
  330. package/lib/utils/proxy.d.ts +7 -0
  331. package/lib/utils/renderer.d.ts +3 -0
  332. package/lights/README.md +3 -0
  333. package/lights/index.d.ts +9 -0
  334. package/lights/lib/ambient-light/ambient-light.d.ts +39 -0
  335. package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +40 -0
  336. package/lights/lib/directional-light/directional-light.d.ts +40 -0
  337. package/lights/lib/hemisphere-light/hemisphere-light.d.ts +41 -0
  338. package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +42 -0
  339. package/lights/lib/light-probe/light-probe.d.ts +40 -0
  340. package/lights/lib/point-light/point-light.d.ts +42 -0
  341. package/lights/lib/rect-area-light/rect-area-light.d.ts +42 -0
  342. package/lights/lib/spot-light/spot-light.d.ts +45 -0
  343. package/materials/README.md +3 -0
  344. package/materials/index.d.ts +17 -0
  345. package/materials/lib/line-basic-material/line-basic-material.d.ts +55 -0
  346. package/materials/lib/line-dashed-material/line-dashed-material.d.ts +58 -0
  347. package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +67 -0
  348. package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +58 -0
  349. package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +58 -0
  350. package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +78 -0
  351. package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +64 -0
  352. package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +61 -0
  353. package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +81 -0
  354. package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +97 -0
  355. package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +78 -0
  356. package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +74 -0
  357. package/materials/lib/points-material/points-material.d.ts +56 -0
  358. package/materials/lib/raw-shader-material/raw-shader-material.d.ts +68 -0
  359. package/materials/lib/shader-material/shader-material.d.ts +68 -0
  360. package/materials/lib/shadow-material/shadow-material.d.ts +52 -0
  361. package/materials/lib/sprite-material/sprite-material.d.ts +56 -0
  362. package/objects/README.md +3 -0
  363. package/objects/index.d.ts +12 -0
  364. package/objects/lib/bone/bone.d.ts +35 -0
  365. package/objects/lib/group/group.d.ts +35 -0
  366. package/objects/lib/instanced-mesh/instanced-mesh.d.ts +44 -0
  367. package/objects/lib/line/line.d.ts +41 -0
  368. package/objects/lib/line-loop/line-loop.d.ts +41 -0
  369. package/objects/lib/line-segments/line-segments.d.ts +41 -0
  370. package/objects/lib/lod/lod.d.ts +40 -0
  371. package/objects/lib/mesh/mesh.d.ts +41 -0
  372. package/objects/lib/points/points.d.ts +41 -0
  373. package/objects/lib/skeleton/skeleton.d.ts +16 -0
  374. package/objects/lib/skinned-mesh/skinned-mesh.d.ts +45 -0
  375. package/objects/lib/sprite/sprite.d.ts +38 -0
  376. package/package.json +93 -2
  377. package/primitives/README.md +3 -0
  378. package/primitives/index.d.ts +2 -0
  379. package/primitives/lib/object-primitive/object-primitive.d.ts +35 -0
  380. package/primitives/lib/primitive/primitive.d.ts +10 -0
  381. package/schematics/src/generators/init/generator.d.ts +1 -1
  382. package/schematics/src/generators/init/generator.js +4 -4
  383. package/schematics/src/generators/init/generator.js.map +1 -1
  384. package/stats/README.md +3 -0
  385. package/stats/index.d.ts +1 -0
  386. package/stats/lib/stats/stats.d.ts +16 -0
  387. package/textures/README.md +3 -0
  388. package/textures/index.d.ts +10 -0
  389. package/textures/lib/canvas-texture/canvas-texture.d.ts +8 -0
  390. package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +8 -0
  391. package/textures/lib/compressed-texture/compressed-texture.d.ts +8 -0
  392. package/textures/lib/cube-texture/cube-texture.d.ts +8 -0
  393. package/textures/lib/data-array-texture/data-array-texture.d.ts +8 -0
  394. package/textures/lib/data-texture/data-texture.d.ts +8 -0
  395. package/textures/lib/data3-dtexture/data3-dtexture.d.ts +8 -0
  396. package/textures/lib/depth-texture/depth-texture.d.ts +8 -0
  397. package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +8 -0
  398. package/textures/lib/video-texture/video-texture.d.ts +8 -0
  399. package/esm2020/lib/angular-three.module.mjs +0 -15
  400. package/lib/angular-three.module.d.ts +0 -7
@@ -0,0 +1 @@
1
+ {"version":3,"file":"angular-three-cameras.mjs","sources":["../../../../packages/angular-three/cameras/src/lib/perspective-camera/perspective-camera.ts","../../../../packages/angular-three/cameras/src/lib/orthographic-camera/orthographic-camera.ts","../../../../packages/angular-three/cameras/src/lib/array-camera/array-camera.ts","../../../../packages/angular-three/cameras/src/lib/stereo-camera/stereo-camera.ts","../../../../packages/angular-three/cameras/src/lib/cube-camera/cube-camera.ts","../../../../packages/angular-three/cameras/src/index.ts","../../../../packages/angular-three/cameras/src/angular-three-cameras.ts"],"sourcesContent":["// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport {\n injectArgs,\n NGT_INSTANCE_INPUTS,\n NGT_INSTANCE_OUTPUTS,\n NgtInstance,\n provideInstanceRef,\n proxify,\n NgtMatrix4,\n NgtVector3,\n NgtEuler,\n NgtQuaternion,\n NgtLayers,\n NgtObservableInput,\n} from 'angular-three';\n\n@Component({\n selector: 'ngt-perspective-camera',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],\n providers: [provideInstanceRef(NgtPerspectiveCamera)],\n inputs: [...getInputs()],\n})\nexport class NgtPerspectiveCamera extends THREE.PerspectiveCamera {\n constructor() {\n super(...(injectArgs<typeof THREE.PerspectiveCamera>({ optional: true }) || []));\n return proxify(this);\n }\n\n static ngAcceptInputType_zoom: NgtObservableInput<number>;\n static ngAcceptInputType_fov: NgtObservableInput<number>;\n static ngAcceptInputType_aspect: NgtObservableInput<number>;\n static ngAcceptInputType_near: NgtObservableInput<number>;\n static ngAcceptInputType_far: NgtObservableInput<number>;\n static ngAcceptInputType_focus: NgtObservableInput<number>;\n static ngAcceptInputType_view: NgtObservableInput<null | {\n enabled: boolean;\n fullWidth: number;\n fullHeight: number;\n offsetX: number;\n offsetY: number;\n width: number;\n height: number;\n }>;\n static ngAcceptInputType_filmGauge: NgtObservableInput<number>;\n static ngAcceptInputType_filmOffset: NgtObservableInput<number>;\n static ngAcceptInputType_matrixWorldInverse: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_projectionMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_projectionMatrixInverse: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_name: NgtObservableInput<string>;\n static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;\n static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;\n static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;\n static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;\n static ngAcceptInputType_visible: NgtObservableInput<boolean>;\n static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;\n static ngAcceptInputType_renderOrder: NgtObservableInput<number>;\n static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;\n static ngAcceptInputType_userData: NgtObservableInput<{ [key: string]: any }>;\n static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_onBeforeRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n static ngAcceptInputType_onAfterRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n}\n\nfunction getInputs() {\n return [\n 'zoom',\n 'fov',\n 'aspect',\n 'near',\n 'far',\n 'focus',\n 'view',\n 'filmGauge',\n 'filmOffset',\n 'matrixWorldInverse',\n 'projectionMatrix',\n 'projectionMatrixInverse',\n 'name',\n 'position',\n 'rotation',\n 'quaternion',\n 'scale',\n 'modelViewMatrix',\n 'normalMatrix',\n 'matrix',\n 'matrixWorld',\n 'matrixAutoUpdate',\n 'matrixWorldAutoUpdate',\n 'matrixWorldNeedsUpdate',\n 'layers',\n 'visible',\n 'castShadow',\n 'receiveShadow',\n 'frustumCulled',\n 'renderOrder',\n 'animations',\n 'userData',\n 'customDepthMaterial',\n 'customDistanceMaterial',\n 'onBeforeRender',\n 'onAfterRender',\n ];\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport {\n injectArgs,\n NGT_INSTANCE_INPUTS,\n NGT_INSTANCE_OUTPUTS,\n NgtInstance,\n provideInstanceRef,\n proxify,\n NgtMatrix4,\n NgtVector3,\n NgtEuler,\n NgtQuaternion,\n NgtLayers,\n NgtObservableInput,\n} from 'angular-three';\n\n@Component({\n selector: 'ngt-orthographic-camera',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],\n providers: [provideInstanceRef(NgtOrthographicCamera)],\n inputs: [...getInputs()],\n})\nexport class NgtOrthographicCamera extends THREE.OrthographicCamera {\n constructor() {\n super(...(injectArgs<typeof THREE.OrthographicCamera>({ optional: true }) || []));\n return proxify(this);\n }\n\n static ngAcceptInputType_zoom: NgtObservableInput<number>;\n static ngAcceptInputType_view: NgtObservableInput<null | {\n enabled: boolean;\n fullWidth: number;\n fullHeight: number;\n offsetX: number;\n offsetY: number;\n width: number;\n height: number;\n }>;\n static ngAcceptInputType_left: NgtObservableInput<number>;\n static ngAcceptInputType_right: NgtObservableInput<number>;\n static ngAcceptInputType_top: NgtObservableInput<number>;\n static ngAcceptInputType_bottom: NgtObservableInput<number>;\n static ngAcceptInputType_near: NgtObservableInput<number>;\n static ngAcceptInputType_far: NgtObservableInput<number>;\n static ngAcceptInputType_matrixWorldInverse: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_projectionMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_projectionMatrixInverse: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_name: NgtObservableInput<string>;\n static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;\n static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;\n static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;\n static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;\n static ngAcceptInputType_visible: NgtObservableInput<boolean>;\n static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;\n static ngAcceptInputType_renderOrder: NgtObservableInput<number>;\n static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;\n static ngAcceptInputType_userData: NgtObservableInput<{ [key: string]: any }>;\n static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_onBeforeRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n static ngAcceptInputType_onAfterRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n}\n\nfunction getInputs() {\n return [\n 'zoom',\n 'view',\n 'left',\n 'right',\n 'top',\n 'bottom',\n 'near',\n 'far',\n 'matrixWorldInverse',\n 'projectionMatrix',\n 'projectionMatrixInverse',\n 'name',\n 'position',\n 'rotation',\n 'quaternion',\n 'scale',\n 'modelViewMatrix',\n 'normalMatrix',\n 'matrix',\n 'matrixWorld',\n 'matrixAutoUpdate',\n 'matrixWorldAutoUpdate',\n 'matrixWorldNeedsUpdate',\n 'layers',\n 'visible',\n 'castShadow',\n 'receiveShadow',\n 'frustumCulled',\n 'renderOrder',\n 'animations',\n 'userData',\n 'customDepthMaterial',\n 'customDistanceMaterial',\n 'onBeforeRender',\n 'onAfterRender',\n ];\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport {\n injectArgs,\n NGT_INSTANCE_INPUTS,\n NGT_INSTANCE_OUTPUTS,\n NgtInstance,\n provideInstanceRef,\n proxify,\n NgtMatrix4,\n NgtVector3,\n NgtEuler,\n NgtQuaternion,\n NgtLayers,\n NgtObservableInput,\n} from 'angular-three';\n\n@Component({\n selector: 'ngt-array-camera',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],\n providers: [provideInstanceRef(NgtArrayCamera)],\n inputs: [...getInputs()],\n})\nexport class NgtArrayCamera extends THREE.ArrayCamera {\n constructor() {\n super(...(injectArgs<typeof THREE.ArrayCamera>({ optional: true }) || []));\n return proxify(this);\n }\n\n static ngAcceptInputType_cameras: NgtObservableInput<THREE.PerspectiveCamera[]>;\n static ngAcceptInputType_zoom: NgtObservableInput<number>;\n static ngAcceptInputType_fov: NgtObservableInput<number>;\n static ngAcceptInputType_aspect: NgtObservableInput<number>;\n static ngAcceptInputType_near: NgtObservableInput<number>;\n static ngAcceptInputType_far: NgtObservableInput<number>;\n static ngAcceptInputType_focus: NgtObservableInput<number>;\n static ngAcceptInputType_view: NgtObservableInput<null | {\n enabled: boolean;\n fullWidth: number;\n fullHeight: number;\n offsetX: number;\n offsetY: number;\n width: number;\n height: number;\n }>;\n static ngAcceptInputType_filmGauge: NgtObservableInput<number>;\n static ngAcceptInputType_filmOffset: NgtObservableInput<number>;\n static ngAcceptInputType_matrixWorldInverse: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_projectionMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_projectionMatrixInverse: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_name: NgtObservableInput<string>;\n static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;\n static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;\n static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;\n static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;\n static ngAcceptInputType_visible: NgtObservableInput<boolean>;\n static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;\n static ngAcceptInputType_renderOrder: NgtObservableInput<number>;\n static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;\n static ngAcceptInputType_userData: NgtObservableInput<{ [key: string]: any }>;\n static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_onBeforeRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n static ngAcceptInputType_onAfterRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n}\n\nfunction getInputs() {\n return [\n 'cameras',\n 'zoom',\n 'fov',\n 'aspect',\n 'near',\n 'far',\n 'focus',\n 'view',\n 'filmGauge',\n 'filmOffset',\n 'matrixWorldInverse',\n 'projectionMatrix',\n 'projectionMatrixInverse',\n 'name',\n 'position',\n 'rotation',\n 'quaternion',\n 'scale',\n 'modelViewMatrix',\n 'normalMatrix',\n 'matrix',\n 'matrixWorld',\n 'matrixAutoUpdate',\n 'matrixWorldAutoUpdate',\n 'matrixWorldNeedsUpdate',\n 'layers',\n 'visible',\n 'castShadow',\n 'receiveShadow',\n 'frustumCulled',\n 'renderOrder',\n 'animations',\n 'userData',\n 'customDepthMaterial',\n 'customDistanceMaterial',\n 'onBeforeRender',\n 'onAfterRender',\n ];\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport {\n injectArgs,\n NGT_INSTANCE_INPUTS,\n NGT_INSTANCE_OUTPUTS,\n NgtInstance,\n provideInstanceRef,\n proxify,\n NgtMatrix4,\n NgtVector3,\n NgtEuler,\n NgtQuaternion,\n NgtLayers,\n NgtObservableInput,\n} from 'angular-three';\n\n@Component({\n selector: 'ngt-stereo-camera',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],\n providers: [provideInstanceRef(NgtStereoCamera)],\n inputs: [...getInputs()],\n})\nexport class NgtStereoCamera extends THREE.StereoCamera {\n constructor() {\n super(...(injectArgs<typeof THREE.StereoCamera>({ optional: true }) || []));\n return proxify(this);\n }\n\n static ngAcceptInputType_aspect: NgtObservableInput<number>;\n static ngAcceptInputType_eyeSep: NgtObservableInput<number>;\n static ngAcceptInputType_cameraL: NgtObservableInput<THREE.PerspectiveCamera>;\n static ngAcceptInputType_cameraR: NgtObservableInput<THREE.PerspectiveCamera>;\n static ngAcceptInputType_matrixWorldInverse: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_projectionMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_projectionMatrixInverse: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_name: NgtObservableInput<string>;\n static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;\n static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;\n static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;\n static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;\n static ngAcceptInputType_visible: NgtObservableInput<boolean>;\n static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;\n static ngAcceptInputType_renderOrder: NgtObservableInput<number>;\n static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;\n static ngAcceptInputType_userData: NgtObservableInput<{ [key: string]: any }>;\n static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_onBeforeRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n static ngAcceptInputType_onAfterRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n}\n\nfunction getInputs() {\n return [\n 'aspect',\n 'eyeSep',\n 'cameraL',\n 'cameraR',\n 'matrixWorldInverse',\n 'projectionMatrix',\n 'projectionMatrixInverse',\n 'name',\n 'position',\n 'rotation',\n 'quaternion',\n 'scale',\n 'modelViewMatrix',\n 'normalMatrix',\n 'matrix',\n 'matrixWorld',\n 'matrixAutoUpdate',\n 'matrixWorldAutoUpdate',\n 'matrixWorldNeedsUpdate',\n 'layers',\n 'visible',\n 'castShadow',\n 'receiveShadow',\n 'frustumCulled',\n 'renderOrder',\n 'animations',\n 'userData',\n 'customDepthMaterial',\n 'customDistanceMaterial',\n 'onBeforeRender',\n 'onAfterRender',\n ];\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport {\n injectArgs,\n NGT_INSTANCE_INPUTS,\n NGT_INSTANCE_OUTPUTS,\n NgtInstance,\n provideInstanceRef,\n proxify,\n NgtVector3,\n NgtEuler,\n NgtQuaternion,\n NgtMatrix4,\n NgtLayers,\n NgtObservableInput,\n} from 'angular-three';\n\n@Component({\n selector: 'ngt-cube-camera',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],\n providers: [provideInstanceRef(NgtCubeCamera)],\n inputs: [...getInputs()],\n})\nexport class NgtCubeCamera extends THREE.CubeCamera {\n constructor() {\n super(...injectArgs<typeof THREE.CubeCamera>());\n return proxify(this);\n }\n\n static ngAcceptInputType_renderTarget: NgtObservableInput<THREE.WebGLCubeRenderTarget>;\n static ngAcceptInputType_name: NgtObservableInput<string>;\n static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;\n static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;\n static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;\n static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;\n static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;\n static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;\n static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;\n static ngAcceptInputType_visible: NgtObservableInput<boolean>;\n static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;\n static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;\n static ngAcceptInputType_renderOrder: NgtObservableInput<number>;\n static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;\n static ngAcceptInputType_userData: NgtObservableInput<{ [key: string]: any }>;\n static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;\n static ngAcceptInputType_onBeforeRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n static ngAcceptInputType_onAfterRender: NgtObservableInput<\n (\n renderer: THREE.WebGLRenderer,\n scene: THREE.Scene,\n camera: THREE.Camera,\n geometry: THREE.BufferGeometry,\n material: THREE.Material,\n group: THREE.Group\n ) => void\n >;\n}\n\nfunction getInputs() {\n return [\n 'renderTarget',\n 'name',\n 'position',\n 'rotation',\n 'quaternion',\n 'scale',\n 'modelViewMatrix',\n 'normalMatrix',\n 'matrix',\n 'matrixWorld',\n 'matrixAutoUpdate',\n 'matrixWorldAutoUpdate',\n 'matrixWorldNeedsUpdate',\n 'layers',\n 'visible',\n 'castShadow',\n 'receiveShadow',\n 'frustumCulled',\n 'renderOrder',\n 'animations',\n 'userData',\n 'customDepthMaterial',\n 'customDistanceMaterial',\n 'onBeforeRender',\n 'onAfterRender',\n ];\n}\n","// GENERATED - AngularThree v1.0.0\nexport * from './lib/perspective-camera/perspective-camera';\nexport * from './lib/orthographic-camera/orthographic-camera';\nexport * from './lib/array-camera/array-camera';\nexport * from './lib/stereo-camera/stereo-camera';\nexport * from './lib/cube-camera/cube-camera';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["getInputs"],"mappings":"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"}
@@ -0,0 +1,475 @@
1
+ import * as i1 from 'angular-three';
2
+ import { injectArgs, proxify, provideInstanceRef, NgtInstance, NGT_INSTANCE_INPUTS, NGT_INSTANCE_OUTPUTS } from 'angular-three';
3
+ import * as i0 from '@angular/core';
4
+ import { Component } from '@angular/core';
5
+ import * as THREE from 'three';
6
+
7
+ // GENERATED - AngularThree v1.0.0
8
+ class NgtBoxGeometry extends THREE.BoxGeometry {
9
+ constructor() {
10
+ super(...(injectArgs({ optional: true }) || []));
11
+ return proxify(this, { attach: 'geometry' });
12
+ }
13
+ }
14
+ NgtBoxGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBoxGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
+ NgtBoxGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtBoxGeometry, isStandalone: true, selector: "ngt-box-geometry", providers: [provideInstanceRef(NgtBoxGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBoxGeometry, decorators: [{
17
+ type: Component,
18
+ args: [{
19
+ selector: 'ngt-box-geometry',
20
+ standalone: true,
21
+ template: '<ng-content></ng-content>',
22
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
23
+ providers: [provideInstanceRef(NgtBoxGeometry)],
24
+ }]
25
+ }], ctorParameters: function () { return []; } });
26
+
27
+ // GENERATED - AngularThree v1.0.0
28
+ class NgtCapsuleGeometry extends THREE.CapsuleGeometry {
29
+ constructor() {
30
+ super(...(injectArgs({ optional: true }) || []));
31
+ return proxify(this, { attach: 'geometry' });
32
+ }
33
+ }
34
+ NgtCapsuleGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCapsuleGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
35
+ NgtCapsuleGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtCapsuleGeometry, isStandalone: true, selector: "ngt-capsule-geometry", providers: [provideInstanceRef(NgtCapsuleGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCapsuleGeometry, decorators: [{
37
+ type: Component,
38
+ args: [{
39
+ selector: 'ngt-capsule-geometry',
40
+ standalone: true,
41
+ template: '<ng-content></ng-content>',
42
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
43
+ providers: [provideInstanceRef(NgtCapsuleGeometry)],
44
+ }]
45
+ }], ctorParameters: function () { return []; } });
46
+
47
+ // GENERATED - AngularThree v1.0.0
48
+ class NgtCircleGeometry extends THREE.CircleGeometry {
49
+ constructor() {
50
+ super(...(injectArgs({ optional: true }) || []));
51
+ return proxify(this, { attach: 'geometry' });
52
+ }
53
+ }
54
+ NgtCircleGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCircleGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
55
+ NgtCircleGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtCircleGeometry, isStandalone: true, selector: "ngt-circle-geometry", providers: [provideInstanceRef(NgtCircleGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
56
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCircleGeometry, decorators: [{
57
+ type: Component,
58
+ args: [{
59
+ selector: 'ngt-circle-geometry',
60
+ standalone: true,
61
+ template: '<ng-content></ng-content>',
62
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
63
+ providers: [provideInstanceRef(NgtCircleGeometry)],
64
+ }]
65
+ }], ctorParameters: function () { return []; } });
66
+
67
+ // GENERATED - AngularThree v1.0.0
68
+ class NgtConeGeometry extends THREE.ConeGeometry {
69
+ constructor() {
70
+ super(...(injectArgs({ optional: true }) || []));
71
+ return proxify(this, { attach: 'geometry' });
72
+ }
73
+ }
74
+ NgtConeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtConeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
75
+ NgtConeGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtConeGeometry, isStandalone: true, selector: "ngt-cone-geometry", providers: [provideInstanceRef(NgtConeGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
76
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtConeGeometry, decorators: [{
77
+ type: Component,
78
+ args: [{
79
+ selector: 'ngt-cone-geometry',
80
+ standalone: true,
81
+ template: '<ng-content></ng-content>',
82
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
83
+ providers: [provideInstanceRef(NgtConeGeometry)],
84
+ }]
85
+ }], ctorParameters: function () { return []; } });
86
+
87
+ // GENERATED - AngularThree v1.0.0
88
+ class NgtCylinderGeometry extends THREE.CylinderGeometry {
89
+ constructor() {
90
+ super(...(injectArgs({ optional: true }) || []));
91
+ return proxify(this, { attach: 'geometry' });
92
+ }
93
+ }
94
+ NgtCylinderGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCylinderGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
95
+ NgtCylinderGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtCylinderGeometry, isStandalone: true, selector: "ngt-cylinder-geometry", providers: [provideInstanceRef(NgtCylinderGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
96
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCylinderGeometry, decorators: [{
97
+ type: Component,
98
+ args: [{
99
+ selector: 'ngt-cylinder-geometry',
100
+ standalone: true,
101
+ template: '<ng-content></ng-content>',
102
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
103
+ providers: [provideInstanceRef(NgtCylinderGeometry)],
104
+ }]
105
+ }], ctorParameters: function () { return []; } });
106
+
107
+ // GENERATED - AngularThree v1.0.0
108
+ class NgtDodecahedronGeometry extends THREE.DodecahedronGeometry {
109
+ constructor() {
110
+ super(...(injectArgs({ optional: true }) || []));
111
+ return proxify(this, { attach: 'geometry' });
112
+ }
113
+ }
114
+ NgtDodecahedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDodecahedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
115
+ NgtDodecahedronGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtDodecahedronGeometry, isStandalone: true, selector: "ngt-dodecahedron-geometry", providers: [provideInstanceRef(NgtDodecahedronGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
116
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDodecahedronGeometry, decorators: [{
117
+ type: Component,
118
+ args: [{
119
+ selector: 'ngt-dodecahedron-geometry',
120
+ standalone: true,
121
+ template: '<ng-content></ng-content>',
122
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
123
+ providers: [provideInstanceRef(NgtDodecahedronGeometry)],
124
+ }]
125
+ }], ctorParameters: function () { return []; } });
126
+
127
+ // GENERATED - AngularThree v1.0.0
128
+ class NgtEdgesGeometry extends THREE.EdgesGeometry {
129
+ constructor() {
130
+ super(...(injectArgs({ optional: true }) || []));
131
+ return proxify(this, { attach: 'geometry' });
132
+ }
133
+ }
134
+ NgtEdgesGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtEdgesGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
135
+ NgtEdgesGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtEdgesGeometry, isStandalone: true, selector: "ngt-edges-geometry", providers: [provideInstanceRef(NgtEdgesGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
136
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtEdgesGeometry, decorators: [{
137
+ type: Component,
138
+ args: [{
139
+ selector: 'ngt-edges-geometry',
140
+ standalone: true,
141
+ template: '<ng-content></ng-content>',
142
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
143
+ providers: [provideInstanceRef(NgtEdgesGeometry)],
144
+ }]
145
+ }], ctorParameters: function () { return []; } });
146
+
147
+ // GENERATED - AngularThree v1.0.0
148
+ class NgtExtrudeGeometry extends THREE.ExtrudeGeometry {
149
+ constructor() {
150
+ super(...(injectArgs({ optional: true }) || []));
151
+ return proxify(this, { attach: 'geometry' });
152
+ }
153
+ }
154
+ NgtExtrudeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtExtrudeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
155
+ NgtExtrudeGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtExtrudeGeometry, isStandalone: true, selector: "ngt-extrude-geometry", providers: [provideInstanceRef(NgtExtrudeGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
156
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtExtrudeGeometry, decorators: [{
157
+ type: Component,
158
+ args: [{
159
+ selector: 'ngt-extrude-geometry',
160
+ standalone: true,
161
+ template: '<ng-content></ng-content>',
162
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
163
+ providers: [provideInstanceRef(NgtExtrudeGeometry)],
164
+ }]
165
+ }], ctorParameters: function () { return []; } });
166
+
167
+ // GENERATED - AngularThree v1.0.0
168
+ class NgtIcosahedronGeometry extends THREE.IcosahedronGeometry {
169
+ constructor() {
170
+ super(...(injectArgs({ optional: true }) || []));
171
+ return proxify(this, { attach: 'geometry' });
172
+ }
173
+ }
174
+ NgtIcosahedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtIcosahedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
175
+ NgtIcosahedronGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtIcosahedronGeometry, isStandalone: true, selector: "ngt-icosahedron-geometry", providers: [provideInstanceRef(NgtIcosahedronGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtIcosahedronGeometry, decorators: [{
177
+ type: Component,
178
+ args: [{
179
+ selector: 'ngt-icosahedron-geometry',
180
+ standalone: true,
181
+ template: '<ng-content></ng-content>',
182
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
183
+ providers: [provideInstanceRef(NgtIcosahedronGeometry)],
184
+ }]
185
+ }], ctorParameters: function () { return []; } });
186
+
187
+ // GENERATED - AngularThree v1.0.0
188
+ class NgtLatheGeometry extends THREE.LatheGeometry {
189
+ constructor() {
190
+ super(...(injectArgs({ optional: true }) || []));
191
+ return proxify(this, { attach: 'geometry' });
192
+ }
193
+ }
194
+ NgtLatheGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLatheGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
195
+ NgtLatheGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLatheGeometry, isStandalone: true, selector: "ngt-lathe-geometry", providers: [provideInstanceRef(NgtLatheGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLatheGeometry, decorators: [{
197
+ type: Component,
198
+ args: [{
199
+ selector: 'ngt-lathe-geometry',
200
+ standalone: true,
201
+ template: '<ng-content></ng-content>',
202
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
203
+ providers: [provideInstanceRef(NgtLatheGeometry)],
204
+ }]
205
+ }], ctorParameters: function () { return []; } });
206
+
207
+ // GENERATED - AngularThree v1.0.0
208
+ class NgtOctahedronGeometry extends THREE.OctahedronGeometry {
209
+ constructor() {
210
+ super(...(injectArgs({ optional: true }) || []));
211
+ return proxify(this, { attach: 'geometry' });
212
+ }
213
+ }
214
+ NgtOctahedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtOctahedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
215
+ NgtOctahedronGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtOctahedronGeometry, isStandalone: true, selector: "ngt-octahedron-geometry", providers: [provideInstanceRef(NgtOctahedronGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
216
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtOctahedronGeometry, decorators: [{
217
+ type: Component,
218
+ args: [{
219
+ selector: 'ngt-octahedron-geometry',
220
+ standalone: true,
221
+ template: '<ng-content></ng-content>',
222
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
223
+ providers: [provideInstanceRef(NgtOctahedronGeometry)],
224
+ }]
225
+ }], ctorParameters: function () { return []; } });
226
+
227
+ // GENERATED - AngularThree v1.0.0
228
+ class NgtPlaneGeometry extends THREE.PlaneGeometry {
229
+ constructor() {
230
+ super(...(injectArgs({ optional: true }) || []));
231
+ return proxify(this, { attach: 'geometry' });
232
+ }
233
+ }
234
+ NgtPlaneGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPlaneGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
235
+ NgtPlaneGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPlaneGeometry, isStandalone: true, selector: "ngt-plane-geometry", providers: [provideInstanceRef(NgtPlaneGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
236
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPlaneGeometry, decorators: [{
237
+ type: Component,
238
+ args: [{
239
+ selector: 'ngt-plane-geometry',
240
+ standalone: true,
241
+ template: '<ng-content></ng-content>',
242
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
243
+ providers: [provideInstanceRef(NgtPlaneGeometry)],
244
+ }]
245
+ }], ctorParameters: function () { return []; } });
246
+
247
+ // GENERATED - AngularThree v1.0.0
248
+ class NgtPolyhedronGeometry extends THREE.PolyhedronGeometry {
249
+ constructor() {
250
+ super(...(injectArgs({ optional: true }) || []));
251
+ return proxify(this, { attach: 'geometry' });
252
+ }
253
+ }
254
+ NgtPolyhedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPolyhedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
255
+ NgtPolyhedronGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPolyhedronGeometry, isStandalone: true, selector: "ngt-polyhedron-geometry", providers: [provideInstanceRef(NgtPolyhedronGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPolyhedronGeometry, decorators: [{
257
+ type: Component,
258
+ args: [{
259
+ selector: 'ngt-polyhedron-geometry',
260
+ standalone: true,
261
+ template: '<ng-content></ng-content>',
262
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
263
+ providers: [provideInstanceRef(NgtPolyhedronGeometry)],
264
+ }]
265
+ }], ctorParameters: function () { return []; } });
266
+
267
+ // GENERATED - AngularThree v1.0.0
268
+ class NgtRingGeometry extends THREE.RingGeometry {
269
+ constructor() {
270
+ super(...(injectArgs({ optional: true }) || []));
271
+ return proxify(this, { attach: 'geometry' });
272
+ }
273
+ }
274
+ NgtRingGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRingGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
275
+ NgtRingGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtRingGeometry, isStandalone: true, selector: "ngt-ring-geometry", providers: [provideInstanceRef(NgtRingGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
276
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRingGeometry, decorators: [{
277
+ type: Component,
278
+ args: [{
279
+ selector: 'ngt-ring-geometry',
280
+ standalone: true,
281
+ template: '<ng-content></ng-content>',
282
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
283
+ providers: [provideInstanceRef(NgtRingGeometry)],
284
+ }]
285
+ }], ctorParameters: function () { return []; } });
286
+
287
+ // GENERATED - AngularThree v1.0.0
288
+ class NgtShapeGeometry extends THREE.ShapeGeometry {
289
+ constructor() {
290
+ super(...(injectArgs({ optional: true }) || []));
291
+ return proxify(this, { attach: 'geometry' });
292
+ }
293
+ }
294
+ NgtShapeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShapeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
295
+ NgtShapeGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtShapeGeometry, isStandalone: true, selector: "ngt-shape-geometry", providers: [provideInstanceRef(NgtShapeGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
296
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShapeGeometry, decorators: [{
297
+ type: Component,
298
+ args: [{
299
+ selector: 'ngt-shape-geometry',
300
+ standalone: true,
301
+ template: '<ng-content></ng-content>',
302
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
303
+ providers: [provideInstanceRef(NgtShapeGeometry)],
304
+ }]
305
+ }], ctorParameters: function () { return []; } });
306
+
307
+ // GENERATED - AngularThree v1.0.0
308
+ class NgtSphereGeometry extends THREE.SphereGeometry {
309
+ constructor() {
310
+ super(...(injectArgs({ optional: true }) || []));
311
+ return proxify(this, { attach: 'geometry' });
312
+ }
313
+ }
314
+ NgtSphereGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSphereGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
315
+ NgtSphereGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSphereGeometry, isStandalone: true, selector: "ngt-sphere-geometry", providers: [provideInstanceRef(NgtSphereGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
316
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSphereGeometry, decorators: [{
317
+ type: Component,
318
+ args: [{
319
+ selector: 'ngt-sphere-geometry',
320
+ standalone: true,
321
+ template: '<ng-content></ng-content>',
322
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
323
+ providers: [provideInstanceRef(NgtSphereGeometry)],
324
+ }]
325
+ }], ctorParameters: function () { return []; } });
326
+
327
+ // GENERATED - AngularThree v1.0.0
328
+ class NgtTetrahedronGeometry extends THREE.TetrahedronGeometry {
329
+ constructor() {
330
+ super(...(injectArgs({ optional: true }) || []));
331
+ return proxify(this, { attach: 'geometry' });
332
+ }
333
+ }
334
+ NgtTetrahedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTetrahedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
335
+ NgtTetrahedronGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtTetrahedronGeometry, isStandalone: true, selector: "ngt-tetrahedron-geometry", providers: [provideInstanceRef(NgtTetrahedronGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
336
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTetrahedronGeometry, decorators: [{
337
+ type: Component,
338
+ args: [{
339
+ selector: 'ngt-tetrahedron-geometry',
340
+ standalone: true,
341
+ template: '<ng-content></ng-content>',
342
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
343
+ providers: [provideInstanceRef(NgtTetrahedronGeometry)],
344
+ }]
345
+ }], ctorParameters: function () { return []; } });
346
+
347
+ // GENERATED - AngularThree v1.0.0
348
+ class NgtTorusGeometry extends THREE.TorusGeometry {
349
+ constructor() {
350
+ super(...(injectArgs({ optional: true }) || []));
351
+ return proxify(this, { attach: 'geometry' });
352
+ }
353
+ }
354
+ NgtTorusGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTorusGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
355
+ NgtTorusGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtTorusGeometry, isStandalone: true, selector: "ngt-torus-geometry", providers: [provideInstanceRef(NgtTorusGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTorusGeometry, decorators: [{
357
+ type: Component,
358
+ args: [{
359
+ selector: 'ngt-torus-geometry',
360
+ standalone: true,
361
+ template: '<ng-content></ng-content>',
362
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
363
+ providers: [provideInstanceRef(NgtTorusGeometry)],
364
+ }]
365
+ }], ctorParameters: function () { return []; } });
366
+
367
+ // GENERATED - AngularThree v1.0.0
368
+ class NgtTorusKnotGeometry extends THREE.TorusKnotGeometry {
369
+ constructor() {
370
+ super(...(injectArgs({ optional: true }) || []));
371
+ return proxify(this, { attach: 'geometry' });
372
+ }
373
+ }
374
+ NgtTorusKnotGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTorusKnotGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
375
+ NgtTorusKnotGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtTorusKnotGeometry, isStandalone: true, selector: "ngt-torus-knot-geometry", providers: [provideInstanceRef(NgtTorusKnotGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
376
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTorusKnotGeometry, decorators: [{
377
+ type: Component,
378
+ args: [{
379
+ selector: 'ngt-torus-knot-geometry',
380
+ standalone: true,
381
+ template: '<ng-content></ng-content>',
382
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
383
+ providers: [provideInstanceRef(NgtTorusKnotGeometry)],
384
+ }]
385
+ }], ctorParameters: function () { return []; } });
386
+
387
+ // GENERATED - AngularThree v1.0.0
388
+ class NgtTubeGeometry extends THREE.TubeGeometry {
389
+ constructor() {
390
+ super(...(injectArgs({ optional: true }) || []));
391
+ return proxify(this, { attach: 'geometry' });
392
+ }
393
+ }
394
+ NgtTubeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTubeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
395
+ NgtTubeGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtTubeGeometry, isStandalone: true, selector: "ngt-tube-geometry", providers: [provideInstanceRef(NgtTubeGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
396
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTubeGeometry, decorators: [{
397
+ type: Component,
398
+ args: [{
399
+ selector: 'ngt-tube-geometry',
400
+ standalone: true,
401
+ template: '<ng-content></ng-content>',
402
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
403
+ providers: [provideInstanceRef(NgtTubeGeometry)],
404
+ }]
405
+ }], ctorParameters: function () { return []; } });
406
+
407
+ // GENERATED - AngularThree v1.0.0
408
+ class NgtWireframeGeometry extends THREE.WireframeGeometry {
409
+ constructor() {
410
+ super(...(injectArgs({ optional: true }) || []));
411
+ return proxify(this, { attach: 'geometry' });
412
+ }
413
+ }
414
+ NgtWireframeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtWireframeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
415
+ NgtWireframeGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtWireframeGeometry, isStandalone: true, selector: "ngt-wireframe-geometry", providers: [provideInstanceRef(NgtWireframeGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtWireframeGeometry, decorators: [{
417
+ type: Component,
418
+ args: [{
419
+ selector: 'ngt-wireframe-geometry',
420
+ standalone: true,
421
+ template: '<ng-content></ng-content>',
422
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
423
+ providers: [provideInstanceRef(NgtWireframeGeometry)],
424
+ }]
425
+ }], ctorParameters: function () { return []; } });
426
+
427
+ // GENERATED - AngularThree v1.0.0
428
+ class NgtBufferGeometry extends THREE.BufferGeometry {
429
+ constructor() {
430
+ super(...(injectArgs({ optional: true }) || []));
431
+ return proxify(this, { attach: 'geometry' });
432
+ }
433
+ }
434
+ NgtBufferGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBufferGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
435
+ NgtBufferGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtBufferGeometry, isStandalone: true, selector: "ngt-buffer-geometry", providers: [provideInstanceRef(NgtBufferGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBufferGeometry, decorators: [{
437
+ type: Component,
438
+ args: [{
439
+ selector: 'ngt-buffer-geometry',
440
+ standalone: true,
441
+ template: '<ng-content></ng-content>',
442
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
443
+ providers: [provideInstanceRef(NgtBufferGeometry)],
444
+ }]
445
+ }], ctorParameters: function () { return []; } });
446
+
447
+ // GENERATED - AngularThree v1.0.0
448
+ class NgtInstancedBufferGeometry extends THREE.InstancedBufferGeometry {
449
+ constructor() {
450
+ super(...(injectArgs({ optional: true }) || []));
451
+ return proxify(this, { attach: 'geometry' });
452
+ }
453
+ }
454
+ NgtInstancedBufferGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedBufferGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
455
+ NgtInstancedBufferGeometry.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtInstancedBufferGeometry, isStandalone: true, selector: "ngt-instanced-buffer-geometry", providers: [provideInstanceRef(NgtInstancedBufferGeometry)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
456
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedBufferGeometry, decorators: [{
457
+ type: Component,
458
+ args: [{
459
+ selector: 'ngt-instanced-buffer-geometry',
460
+ standalone: true,
461
+ template: '<ng-content></ng-content>',
462
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
463
+ providers: [provideInstanceRef(NgtInstancedBufferGeometry)],
464
+ }]
465
+ }], ctorParameters: function () { return []; } });
466
+
467
+ // GENERATED - AngularThree v1.0.0
468
+
469
+ /**
470
+ * Generated bundle index. Do not edit.
471
+ */
472
+
473
+ export { NgtBoxGeometry, NgtBufferGeometry, NgtCapsuleGeometry, NgtCircleGeometry, NgtConeGeometry, NgtCylinderGeometry, NgtDodecahedronGeometry, NgtEdgesGeometry, NgtExtrudeGeometry, NgtIcosahedronGeometry, NgtInstancedBufferGeometry, NgtLatheGeometry, NgtOctahedronGeometry, NgtPlaneGeometry, NgtPolyhedronGeometry, NgtRingGeometry, NgtShapeGeometry, NgtSphereGeometry, NgtTetrahedronGeometry, NgtTorusGeometry, NgtTorusKnotGeometry, NgtTubeGeometry, NgtWireframeGeometry };
474
+ //# sourceMappingURL=angular-three-geometries.mjs.map
475
+ //# sourceMappingURL=angular-three-geometries.mjs.map