angular-three 0.0.7 → 1.0.0-beta.0

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 (441) hide show
  1. package/esm2020/angular-three.mjs +1 -1
  2. package/esm2020/index.mjs +2 -35
  3. package/esm2020/lib/canvas.mjs +141 -128
  4. package/esm2020/lib/di/catalogue.mjs +7 -0
  5. package/esm2020/lib/directives/args.mjs +37 -17
  6. package/esm2020/lib/directives/repeat.mjs +5 -8
  7. package/esm2020/lib/events.mjs +341 -52
  8. package/esm2020/lib/loader.mjs +55 -0
  9. package/esm2020/lib/loop.mjs +137 -0
  10. package/esm2020/lib/renderer/di.mjs +3 -0
  11. package/esm2020/lib/renderer/enums.mjs +2 -0
  12. package/esm2020/lib/renderer/provider.mjs +19 -0
  13. package/esm2020/lib/renderer/renderer.mjs +293 -0
  14. package/esm2020/lib/renderer/state.mjs +350 -0
  15. package/esm2020/lib/renderer/utils.mjs +177 -0
  16. package/esm2020/lib/stores/rx-store.mjs +99 -0
  17. package/esm2020/lib/stores/store.mjs +190 -239
  18. package/esm2020/lib/types.mjs +1 -1
  19. package/esm2020/lib/utils/apply-props.mjs +37 -80
  20. package/esm2020/lib/utils/attach.mjs +29 -0
  21. package/esm2020/lib/utils/instance.mjs +43 -28
  22. package/esm2020/lib/utils/is.mjs +7 -11
  23. package/esm2020/lib/utils/make.mjs +30 -10
  24. package/esm2020/lib/utils/update.mjs +37 -0
  25. package/esm2020/lib/web/events.mjs +68 -0
  26. package/fesm2015/angular-three.mjs +2053 -2046
  27. package/fesm2015/angular-three.mjs.map +1 -1
  28. package/fesm2020/angular-three.mjs +2003 -1990
  29. package/fesm2020/angular-three.mjs.map +1 -1
  30. package/index.d.ts +1 -34
  31. package/lib/canvas.d.ts +29 -28
  32. package/lib/di/catalogue.d.ts +3 -0
  33. package/lib/directives/args.d.ts +8 -12
  34. package/lib/events.d.ts +7 -2
  35. package/lib/loader.d.ts +15 -0
  36. package/lib/{utils/loop.d.ts → loop.d.ts} +7 -6
  37. package/lib/renderer/di.d.ts +2 -0
  38. package/lib/renderer/enums.d.ts +25 -0
  39. package/lib/renderer/provider.d.ts +25 -0
  40. package/lib/renderer/renderer.d.ts +49 -0
  41. package/lib/renderer/state.d.ts +59 -0
  42. package/lib/renderer/utils.d.ts +20 -0
  43. package/lib/stores/rx-store.d.ts +17 -0
  44. package/lib/stores/store.d.ts +6 -23
  45. package/lib/types.d.ts +182 -191
  46. package/lib/utils/apply-props.d.ts +2 -6
  47. package/lib/utils/attach.d.ts +3 -0
  48. package/lib/utils/instance.d.ts +3 -3
  49. package/lib/utils/is.d.ts +6 -10
  50. package/lib/utils/make.d.ts +5 -2
  51. package/lib/utils/update.d.ts +4 -0
  52. package/lib/web/events.d.ts +4 -0
  53. package/package.json +30 -99
  54. package/attributes/README.md +0 -3
  55. package/attributes/index.d.ts +0 -22
  56. package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +0 -8
  57. package/attributes/lib/color-attribute/color-attribute.d.ts +0 -8
  58. package/attributes/lib/common.d.ts +0 -1
  59. package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +0 -8
  60. package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +0 -8
  61. package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +0 -8
  62. package/attributes/lib/fog-attribute/fog-attribute.d.ts +0 -8
  63. package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +0 -8
  64. package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +0 -8
  65. package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +0 -8
  66. package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +0 -8
  67. package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +0 -8
  68. package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +0 -8
  69. package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +0 -8
  70. package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +0 -8
  71. package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +0 -8
  72. package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +0 -8
  73. package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +0 -8
  74. package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +0 -8
  75. package/attributes/lib/value-attribute/value-attribute.d.ts +0 -8
  76. package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +0 -8
  77. package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +0 -8
  78. package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +0 -8
  79. package/audios/README.md +0 -3
  80. package/audios/index.d.ts +0 -3
  81. package/audios/lib/audio/audio.d.ts +0 -49
  82. package/audios/lib/audio-listener/audio-listener.d.ts +0 -35
  83. package/audios/lib/common.d.ts +0 -3
  84. package/audios/lib/positional-audio/positional-audio.d.ts +0 -49
  85. package/cameras/README.md +0 -3
  86. package/cameras/index.d.ts +0 -5
  87. package/cameras/lib/array-camera/array-camera.d.ts +0 -56
  88. package/cameras/lib/common.d.ts +0 -3
  89. package/cameras/lib/cube-camera/cube-camera.d.ts +0 -36
  90. package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +0 -54
  91. package/cameras/lib/perspective-camera/perspective-camera.d.ts +0 -55
  92. package/cameras/lib/stereo-camera/stereo-camera.d.ts +0 -42
  93. package/esm2020/attributes/angular-three-attributes.mjs +0 -5
  94. package/esm2020/attributes/index.mjs +0 -24
  95. package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +0 -26
  96. package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +0 -26
  97. package/esm2020/attributes/lib/common.mjs +0 -13
  98. package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +0 -26
  99. package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +0 -26
  100. package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +0 -26
  101. package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +0 -26
  102. package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +0 -26
  103. package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +0 -26
  104. package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +0 -26
  105. package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +0 -26
  106. package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +0 -26
  107. package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +0 -30
  108. package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +0 -26
  109. package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +0 -26
  110. package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +0 -26
  111. package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +0 -26
  112. package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +0 -26
  113. package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +0 -26
  114. package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +0 -28
  115. package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +0 -26
  116. package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +0 -26
  117. package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +0 -26
  118. package/esm2020/audios/angular-three-audios.mjs +0 -5
  119. package/esm2020/audios/index.mjs +0 -5
  120. package/esm2020/audios/lib/audio/audio.mjs +0 -45
  121. package/esm2020/audios/lib/audio-listener/audio-listener.mjs +0 -38
  122. package/esm2020/audios/lib/common.mjs +0 -54
  123. package/esm2020/audios/lib/positional-audio/positional-audio.mjs +0 -45
  124. package/esm2020/cameras/angular-three-cameras.mjs +0 -5
  125. package/esm2020/cameras/index.mjs +0 -7
  126. package/esm2020/cameras/lib/array-camera/array-camera.mjs +0 -44
  127. package/esm2020/cameras/lib/common.mjs +0 -54
  128. package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +0 -30
  129. package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +0 -42
  130. package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +0 -43
  131. package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +0 -38
  132. package/esm2020/geometries/angular-three-geometries.mjs +0 -5
  133. package/esm2020/geometries/index.mjs +0 -25
  134. package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +0 -26
  135. package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +0 -26
  136. package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +0 -26
  137. package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +0 -26
  138. package/esm2020/geometries/lib/common.mjs +0 -13
  139. package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +0 -26
  140. package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +0 -26
  141. package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +0 -26
  142. package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +0 -26
  143. package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +0 -26
  144. package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +0 -26
  145. package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +0 -26
  146. package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +0 -26
  147. package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +0 -26
  148. package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +0 -26
  149. package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +0 -26
  150. package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +0 -26
  151. package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +0 -26
  152. package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +0 -26
  153. package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +0 -26
  154. package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +0 -26
  155. package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +0 -26
  156. package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +0 -26
  157. package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +0 -26
  158. package/esm2020/helpers/angular-three-helpers.mjs +0 -5
  159. package/esm2020/helpers/index.mjs +0 -15
  160. package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +0 -26
  161. package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +0 -26
  162. package/esm2020/helpers/lib/box-helper/box-helper.mjs +0 -36
  163. package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +0 -36
  164. package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +0 -36
  165. package/esm2020/helpers/lib/common.mjs +0 -13
  166. package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +0 -36
  167. package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +0 -26
  168. package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +0 -36
  169. package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +0 -36
  170. package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +0 -36
  171. package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +0 -26
  172. package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +0 -36
  173. package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +0 -36
  174. package/esm2020/lib/di/resize.mjs +0 -19
  175. package/esm2020/lib/di/window.mjs +0 -13
  176. package/esm2020/lib/directives/cursor.mjs +0 -35
  177. package/esm2020/lib/instance.mjs +0 -368
  178. package/esm2020/lib/pipes/math.mjs +0 -15
  179. package/esm2020/lib/pipes/pi.mjs +0 -14
  180. package/esm2020/lib/pipes/radian.mjs +0 -14
  181. package/esm2020/lib/pipes/side.mjs +0 -22
  182. package/esm2020/lib/ref.mjs +0 -15
  183. package/esm2020/lib/services/loader.mjs +0 -45
  184. package/esm2020/lib/services/resize.mjs +0 -127
  185. package/esm2020/lib/stores/component-store.mjs +0 -137
  186. package/esm2020/lib/utils/build-graph.mjs +0 -15
  187. package/esm2020/lib/utils/camera.mjs +0 -28
  188. package/esm2020/lib/utils/capitalize.mjs +0 -4
  189. package/esm2020/lib/utils/check-update.mjs +0 -22
  190. package/esm2020/lib/utils/events.mjs +0 -353
  191. package/esm2020/lib/utils/get-instance-local-state.mjs +0 -6
  192. package/esm2020/lib/utils/inject.mjs +0 -18
  193. package/esm2020/lib/utils/loop.mjs +0 -139
  194. package/esm2020/lib/utils/mutate.mjs +0 -24
  195. package/esm2020/lib/utils/proxy.mjs +0 -99
  196. package/esm2020/lib/utils/renderer.mjs +0 -15
  197. package/esm2020/lights/angular-three-lights.mjs +0 -5
  198. package/esm2020/lights/index.mjs +0 -11
  199. package/esm2020/lights/lib/ambient-light/ambient-light.mjs +0 -30
  200. package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +0 -30
  201. package/esm2020/lights/lib/common.mjs +0 -54
  202. package/esm2020/lights/lib/directional-light/directional-light.mjs +0 -30
  203. package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +0 -30
  204. package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +0 -30
  205. package/esm2020/lights/lib/light-probe/light-probe.mjs +0 -30
  206. package/esm2020/lights/lib/point-light/point-light.mjs +0 -30
  207. package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +0 -30
  208. package/esm2020/lights/lib/spot-light/spot-light.mjs +0 -42
  209. package/esm2020/materials/angular-three-materials.mjs +0 -5
  210. package/esm2020/materials/index.mjs +0 -19
  211. package/esm2020/materials/lib/common.mjs +0 -13
  212. package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +0 -77
  213. package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +0 -80
  214. package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +0 -89
  215. package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +0 -80
  216. package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +0 -80
  217. package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +0 -100
  218. package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +0 -86
  219. package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +0 -83
  220. package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +0 -103
  221. package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +0 -119
  222. package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +0 -100
  223. package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +0 -96
  224. package/esm2020/materials/lib/points-material/points-material.mjs +0 -78
  225. package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +0 -83
  226. package/esm2020/materials/lib/shader-material/shader-material.mjs +0 -83
  227. package/esm2020/materials/lib/shadow-material/shadow-material.mjs +0 -74
  228. package/esm2020/materials/lib/sprite-material/sprite-material.mjs +0 -78
  229. package/esm2020/objects/angular-three-objects.mjs +0 -5
  230. package/esm2020/objects/index.mjs +0 -14
  231. package/esm2020/objects/lib/bone/bone.mjs +0 -27
  232. package/esm2020/objects/lib/common.mjs +0 -54
  233. package/esm2020/objects/lib/group/group.mjs +0 -27
  234. package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +0 -40
  235. package/esm2020/objects/lib/line/line.mjs +0 -30
  236. package/esm2020/objects/lib/line-loop/line-loop.mjs +0 -30
  237. package/esm2020/objects/lib/line-segments/line-segments.mjs +0 -30
  238. package/esm2020/objects/lib/lod/lod.mjs +0 -30
  239. package/esm2020/objects/lib/mesh/mesh.mjs +0 -30
  240. package/esm2020/objects/lib/points/points.mjs +0 -30
  241. package/esm2020/objects/lib/skeleton/skeleton.mjs +0 -41
  242. package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +0 -39
  243. package/esm2020/objects/lib/sprite/sprite.mjs +0 -30
  244. package/esm2020/primitives/angular-three-primitives.mjs +0 -5
  245. package/esm2020/primitives/index.mjs +0 -3
  246. package/esm2020/primitives/lib/common.mjs +0 -54
  247. package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +0 -27
  248. package/esm2020/primitives/lib/primitive/primitive.mjs +0 -38
  249. package/esm2020/stats/angular-three-stats.mjs +0 -5
  250. package/esm2020/stats/index.mjs +0 -2
  251. package/esm2020/stats/lib/stats/stats.mjs +0 -54
  252. package/esm2020/textures/angular-three-textures.mjs +0 -5
  253. package/esm2020/textures/index.mjs +0 -12
  254. package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +0 -26
  255. package/esm2020/textures/lib/common.mjs +0 -13
  256. package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +0 -26
  257. package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +0 -26
  258. package/esm2020/textures/lib/cube-texture/cube-texture.mjs +0 -26
  259. package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +0 -26
  260. package/esm2020/textures/lib/data-texture/data-texture.mjs +0 -26
  261. package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +0 -26
  262. package/esm2020/textures/lib/depth-texture/depth-texture.mjs +0 -26
  263. package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +0 -26
  264. package/esm2020/textures/lib/video-texture/video-texture.mjs +0 -26
  265. package/fesm2015/angular-three-attributes.mjs +0 -475
  266. package/fesm2015/angular-three-attributes.mjs.map +0 -1
  267. package/fesm2015/angular-three-audios.mjs +0 -179
  268. package/fesm2015/angular-three-audios.mjs.map +0 -1
  269. package/fesm2015/angular-three-cameras.mjs +0 -236
  270. package/fesm2015/angular-three-cameras.mjs.map +0 -1
  271. package/fesm2015/angular-three-geometries.mjs +0 -488
  272. package/fesm2015/angular-three-geometries.mjs.map +0 -1
  273. package/fesm2015/angular-three-helpers.mjs +0 -378
  274. package/fesm2015/angular-three-helpers.mjs.map +0 -1
  275. package/fesm2015/angular-three-lights.mjs +0 -297
  276. package/fesm2015/angular-three-lights.mjs.map +0 -1
  277. package/fesm2015/angular-three-materials.mjs +0 -1415
  278. package/fesm2015/angular-three-materials.mjs.map +0 -1
  279. package/fesm2015/angular-three-objects.mjs +0 -381
  280. package/fesm2015/angular-three-objects.mjs.map +0 -1
  281. package/fesm2015/angular-three-primitives.mjs +0 -120
  282. package/fesm2015/angular-three-primitives.mjs.map +0 -1
  283. package/fesm2015/angular-three-stats.mjs +0 -62
  284. package/fesm2015/angular-three-stats.mjs.map +0 -1
  285. package/fesm2015/angular-three-textures.mjs +0 -228
  286. package/fesm2015/angular-three-textures.mjs.map +0 -1
  287. package/fesm2020/angular-three-attributes.mjs +0 -475
  288. package/fesm2020/angular-three-attributes.mjs.map +0 -1
  289. package/fesm2020/angular-three-audios.mjs +0 -179
  290. package/fesm2020/angular-three-audios.mjs.map +0 -1
  291. package/fesm2020/angular-three-cameras.mjs +0 -236
  292. package/fesm2020/angular-three-cameras.mjs.map +0 -1
  293. package/fesm2020/angular-three-geometries.mjs +0 -488
  294. package/fesm2020/angular-three-geometries.mjs.map +0 -1
  295. package/fesm2020/angular-three-helpers.mjs +0 -378
  296. package/fesm2020/angular-three-helpers.mjs.map +0 -1
  297. package/fesm2020/angular-three-lights.mjs +0 -297
  298. package/fesm2020/angular-three-lights.mjs.map +0 -1
  299. package/fesm2020/angular-three-materials.mjs +0 -1415
  300. package/fesm2020/angular-three-materials.mjs.map +0 -1
  301. package/fesm2020/angular-three-objects.mjs +0 -381
  302. package/fesm2020/angular-three-objects.mjs.map +0 -1
  303. package/fesm2020/angular-three-primitives.mjs +0 -120
  304. package/fesm2020/angular-three-primitives.mjs.map +0 -1
  305. package/fesm2020/angular-three-stats.mjs +0 -62
  306. package/fesm2020/angular-three-stats.mjs.map +0 -1
  307. package/fesm2020/angular-three-textures.mjs +0 -228
  308. package/fesm2020/angular-three-textures.mjs.map +0 -1
  309. package/geometries/README.md +0 -3
  310. package/geometries/index.d.ts +0 -23
  311. package/geometries/lib/box-geometry/box-geometry.d.ts +0 -8
  312. package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +0 -8
  313. package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +0 -8
  314. package/geometries/lib/circle-geometry/circle-geometry.d.ts +0 -8
  315. package/geometries/lib/common.d.ts +0 -1
  316. package/geometries/lib/cone-geometry/cone-geometry.d.ts +0 -8
  317. package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +0 -8
  318. package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +0 -8
  319. package/geometries/lib/edges-geometry/edges-geometry.d.ts +0 -8
  320. package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +0 -8
  321. package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +0 -8
  322. package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +0 -8
  323. package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +0 -8
  324. package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +0 -8
  325. package/geometries/lib/plane-geometry/plane-geometry.d.ts +0 -8
  326. package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +0 -8
  327. package/geometries/lib/ring-geometry/ring-geometry.d.ts +0 -8
  328. package/geometries/lib/shape-geometry/shape-geometry.d.ts +0 -8
  329. package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +0 -8
  330. package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +0 -8
  331. package/geometries/lib/torus-geometry/torus-geometry.d.ts +0 -8
  332. package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +0 -8
  333. package/geometries/lib/tube-geometry/tube-geometry.d.ts +0 -8
  334. package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +0 -8
  335. package/helpers/README.md +0 -3
  336. package/helpers/index.d.ts +0 -13
  337. package/helpers/lib/arrow-helper/arrow-helper.d.ts +0 -8
  338. package/helpers/lib/axes-helper/axes-helper.d.ts +0 -8
  339. package/helpers/lib/box-helper/box-helper.d.ts +0 -8
  340. package/helpers/lib/box3-helper/box3-helper.d.ts +0 -8
  341. package/helpers/lib/camera-helper/camera-helper.d.ts +0 -8
  342. package/helpers/lib/common.d.ts +0 -1
  343. package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +0 -8
  344. package/helpers/lib/grid-helper/grid-helper.d.ts +0 -8
  345. package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +0 -8
  346. package/helpers/lib/plane-helper/plane-helper.d.ts +0 -8
  347. package/helpers/lib/point-light-helper/point-light-helper.d.ts +0 -8
  348. package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +0 -8
  349. package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +0 -8
  350. package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +0 -8
  351. package/lib/di/resize.d.ts +0 -12
  352. package/lib/di/window.d.ts +0 -1
  353. package/lib/directives/cursor.d.ts +0 -7
  354. package/lib/instance.d.ts +0 -81
  355. package/lib/pipes/math.d.ts +0 -7
  356. package/lib/pipes/pi.d.ts +0 -7
  357. package/lib/pipes/radian.d.ts +0 -7
  358. package/lib/pipes/side.d.ts +0 -8
  359. package/lib/ref.d.ts +0 -5
  360. package/lib/services/loader.d.ts +0 -11
  361. package/lib/services/resize.d.ts +0 -19
  362. package/lib/stores/component-store.d.ts +0 -69
  363. package/lib/utils/build-graph.d.ts +0 -3
  364. package/lib/utils/camera.d.ts +0 -4
  365. package/lib/utils/capitalize.d.ts +0 -1
  366. package/lib/utils/check-update.d.ts +0 -2
  367. package/lib/utils/events.d.ts +0 -6
  368. package/lib/utils/get-instance-local-state.d.ts +0 -2
  369. package/lib/utils/inject.d.ts +0 -9
  370. package/lib/utils/mutate.d.ts +0 -2
  371. package/lib/utils/proxy.d.ts +0 -7
  372. package/lib/utils/renderer.d.ts +0 -3
  373. package/lights/README.md +0 -3
  374. package/lights/index.d.ts +0 -9
  375. package/lights/lib/ambient-light/ambient-light.d.ts +0 -39
  376. package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +0 -40
  377. package/lights/lib/common.d.ts +0 -3
  378. package/lights/lib/directional-light/directional-light.d.ts +0 -40
  379. package/lights/lib/hemisphere-light/hemisphere-light.d.ts +0 -41
  380. package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +0 -42
  381. package/lights/lib/light-probe/light-probe.d.ts +0 -40
  382. package/lights/lib/point-light/point-light.d.ts +0 -42
  383. package/lights/lib/rect-area-light/rect-area-light.d.ts +0 -42
  384. package/lights/lib/spot-light/spot-light.d.ts +0 -45
  385. package/materials/README.md +0 -3
  386. package/materials/index.d.ts +0 -17
  387. package/materials/lib/common.d.ts +0 -1
  388. package/materials/lib/line-basic-material/line-basic-material.d.ts +0 -55
  389. package/materials/lib/line-dashed-material/line-dashed-material.d.ts +0 -58
  390. package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +0 -67
  391. package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +0 -58
  392. package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +0 -58
  393. package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +0 -78
  394. package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +0 -64
  395. package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +0 -61
  396. package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +0 -81
  397. package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +0 -97
  398. package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +0 -78
  399. package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +0 -74
  400. package/materials/lib/points-material/points-material.d.ts +0 -56
  401. package/materials/lib/raw-shader-material/raw-shader-material.d.ts +0 -68
  402. package/materials/lib/shader-material/shader-material.d.ts +0 -68
  403. package/materials/lib/shadow-material/shadow-material.d.ts +0 -52
  404. package/materials/lib/sprite-material/sprite-material.d.ts +0 -56
  405. package/objects/README.md +0 -3
  406. package/objects/index.d.ts +0 -12
  407. package/objects/lib/bone/bone.d.ts +0 -35
  408. package/objects/lib/common.d.ts +0 -3
  409. package/objects/lib/group/group.d.ts +0 -35
  410. package/objects/lib/instanced-mesh/instanced-mesh.d.ts +0 -44
  411. package/objects/lib/line/line.d.ts +0 -41
  412. package/objects/lib/line-loop/line-loop.d.ts +0 -41
  413. package/objects/lib/line-segments/line-segments.d.ts +0 -41
  414. package/objects/lib/lod/lod.d.ts +0 -40
  415. package/objects/lib/mesh/mesh.d.ts +0 -41
  416. package/objects/lib/points/points.d.ts +0 -41
  417. package/objects/lib/skeleton/skeleton.d.ts +0 -16
  418. package/objects/lib/skinned-mesh/skinned-mesh.d.ts +0 -45
  419. package/objects/lib/sprite/sprite.d.ts +0 -38
  420. package/primitives/README.md +0 -3
  421. package/primitives/index.d.ts +0 -2
  422. package/primitives/lib/common.d.ts +0 -3
  423. package/primitives/lib/object-primitive/object-primitive.d.ts +0 -35
  424. package/primitives/lib/primitive/primitive.d.ts +0 -10
  425. package/schematics/README.md +0 -11
  426. package/stats/README.md +0 -3
  427. package/stats/index.d.ts +0 -1
  428. package/stats/lib/stats/stats.d.ts +0 -16
  429. package/textures/README.md +0 -3
  430. package/textures/index.d.ts +0 -10
  431. package/textures/lib/canvas-texture/canvas-texture.d.ts +0 -8
  432. package/textures/lib/common.d.ts +0 -1
  433. package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +0 -8
  434. package/textures/lib/compressed-texture/compressed-texture.d.ts +0 -8
  435. package/textures/lib/cube-texture/cube-texture.d.ts +0 -8
  436. package/textures/lib/data-array-texture/data-array-texture.d.ts +0 -8
  437. package/textures/lib/data-texture/data-texture.d.ts +0 -8
  438. package/textures/lib/data3-dtexture/data3-dtexture.d.ts +0 -8
  439. package/textures/lib/depth-texture/depth-texture.d.ts +0 -8
  440. package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +0 -8
  441. package/textures/lib/video-texture/video-texture.d.ts +0 -8
@@ -1,488 +0,0 @@
1
- import * as i1 from 'angular-three';
2
- import { injectArgs, proxify, provideInstanceRef, NgtInstance } 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
- const NGT_INSTANCE_INPUTS = [
9
- 'ref',
10
- 'attach',
11
- 'skipWrapper',
12
- 'skipInit',
13
- 'noAttach',
14
- 'beforeRender',
15
- 'priority',
16
- 'updateCallback',
17
- 'readyCallback',
18
- ];
19
-
20
- // GENERATED - AngularThree v1.0.0
21
- class NgtBoxGeometry extends THREE.BoxGeometry {
22
- constructor() {
23
- super(...(injectArgs({ optional: true }) || []));
24
- return proxify(this, { attach: 'geometry' });
25
- }
26
- }
27
- NgtBoxGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBoxGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
28
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
29
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBoxGeometry, decorators: [{
30
- type: Component,
31
- args: [{
32
- selector: 'ngt-box-geometry',
33
- standalone: true,
34
- template: '<ng-content></ng-content>',
35
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
36
- providers: [provideInstanceRef(NgtBoxGeometry)],
37
- }]
38
- }], ctorParameters: function () { return []; } });
39
-
40
- // GENERATED - AngularThree v1.0.0
41
- class NgtCapsuleGeometry extends THREE.CapsuleGeometry {
42
- constructor() {
43
- super(...(injectArgs({ optional: true }) || []));
44
- return proxify(this, { attach: 'geometry' });
45
- }
46
- }
47
- NgtCapsuleGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCapsuleGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
48
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
49
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCapsuleGeometry, decorators: [{
50
- type: Component,
51
- args: [{
52
- selector: 'ngt-capsule-geometry',
53
- standalone: true,
54
- template: '<ng-content></ng-content>',
55
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
56
- providers: [provideInstanceRef(NgtCapsuleGeometry)],
57
- }]
58
- }], ctorParameters: function () { return []; } });
59
-
60
- // GENERATED - AngularThree v1.0.0
61
- class NgtCircleGeometry extends THREE.CircleGeometry {
62
- constructor() {
63
- super(...(injectArgs({ optional: true }) || []));
64
- return proxify(this, { attach: 'geometry' });
65
- }
66
- }
67
- NgtCircleGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCircleGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
68
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
69
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCircleGeometry, decorators: [{
70
- type: Component,
71
- args: [{
72
- selector: 'ngt-circle-geometry',
73
- standalone: true,
74
- template: '<ng-content></ng-content>',
75
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
76
- providers: [provideInstanceRef(NgtCircleGeometry)],
77
- }]
78
- }], ctorParameters: function () { return []; } });
79
-
80
- // GENERATED - AngularThree v1.0.0
81
- class NgtConeGeometry extends THREE.ConeGeometry {
82
- constructor() {
83
- super(...(injectArgs({ optional: true }) || []));
84
- return proxify(this, { attach: 'geometry' });
85
- }
86
- }
87
- NgtConeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtConeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
88
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
89
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtConeGeometry, decorators: [{
90
- type: Component,
91
- args: [{
92
- selector: 'ngt-cone-geometry',
93
- standalone: true,
94
- template: '<ng-content></ng-content>',
95
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
96
- providers: [provideInstanceRef(NgtConeGeometry)],
97
- }]
98
- }], ctorParameters: function () { return []; } });
99
-
100
- // GENERATED - AngularThree v1.0.0
101
- class NgtCylinderGeometry extends THREE.CylinderGeometry {
102
- constructor() {
103
- super(...(injectArgs({ optional: true }) || []));
104
- return proxify(this, { attach: 'geometry' });
105
- }
106
- }
107
- NgtCylinderGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCylinderGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
108
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
109
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCylinderGeometry, decorators: [{
110
- type: Component,
111
- args: [{
112
- selector: 'ngt-cylinder-geometry',
113
- standalone: true,
114
- template: '<ng-content></ng-content>',
115
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
116
- providers: [provideInstanceRef(NgtCylinderGeometry)],
117
- }]
118
- }], ctorParameters: function () { return []; } });
119
-
120
- // GENERATED - AngularThree v1.0.0
121
- class NgtDodecahedronGeometry extends THREE.DodecahedronGeometry {
122
- constructor() {
123
- super(...(injectArgs({ optional: true }) || []));
124
- return proxify(this, { attach: 'geometry' });
125
- }
126
- }
127
- NgtDodecahedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDodecahedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
128
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
129
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDodecahedronGeometry, decorators: [{
130
- type: Component,
131
- args: [{
132
- selector: 'ngt-dodecahedron-geometry',
133
- standalone: true,
134
- template: '<ng-content></ng-content>',
135
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
136
- providers: [provideInstanceRef(NgtDodecahedronGeometry)],
137
- }]
138
- }], ctorParameters: function () { return []; } });
139
-
140
- // GENERATED - AngularThree v1.0.0
141
- class NgtEdgesGeometry extends THREE.EdgesGeometry {
142
- constructor() {
143
- super(...(injectArgs({ optional: true }) || []));
144
- return proxify(this, { attach: 'geometry' });
145
- }
146
- }
147
- NgtEdgesGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtEdgesGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
148
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
149
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtEdgesGeometry, decorators: [{
150
- type: Component,
151
- args: [{
152
- selector: 'ngt-edges-geometry',
153
- standalone: true,
154
- template: '<ng-content></ng-content>',
155
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
156
- providers: [provideInstanceRef(NgtEdgesGeometry)],
157
- }]
158
- }], ctorParameters: function () { return []; } });
159
-
160
- // GENERATED - AngularThree v1.0.0
161
- class NgtExtrudeGeometry extends THREE.ExtrudeGeometry {
162
- constructor() {
163
- super(...(injectArgs({ optional: true }) || []));
164
- return proxify(this, { attach: 'geometry' });
165
- }
166
- }
167
- NgtExtrudeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtExtrudeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
168
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
169
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtExtrudeGeometry, decorators: [{
170
- type: Component,
171
- args: [{
172
- selector: 'ngt-extrude-geometry',
173
- standalone: true,
174
- template: '<ng-content></ng-content>',
175
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
176
- providers: [provideInstanceRef(NgtExtrudeGeometry)],
177
- }]
178
- }], ctorParameters: function () { return []; } });
179
-
180
- // GENERATED - AngularThree v1.0.0
181
- class NgtIcosahedronGeometry extends THREE.IcosahedronGeometry {
182
- constructor() {
183
- super(...(injectArgs({ optional: true }) || []));
184
- return proxify(this, { attach: 'geometry' });
185
- }
186
- }
187
- NgtIcosahedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtIcosahedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
188
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
189
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtIcosahedronGeometry, decorators: [{
190
- type: Component,
191
- args: [{
192
- selector: 'ngt-icosahedron-geometry',
193
- standalone: true,
194
- template: '<ng-content></ng-content>',
195
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
196
- providers: [provideInstanceRef(NgtIcosahedronGeometry)],
197
- }]
198
- }], ctorParameters: function () { return []; } });
199
-
200
- // GENERATED - AngularThree v1.0.0
201
- class NgtLatheGeometry extends THREE.LatheGeometry {
202
- constructor() {
203
- super(...(injectArgs({ optional: true }) || []));
204
- return proxify(this, { attach: 'geometry' });
205
- }
206
- }
207
- NgtLatheGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLatheGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
208
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
209
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLatheGeometry, decorators: [{
210
- type: Component,
211
- args: [{
212
- selector: 'ngt-lathe-geometry',
213
- standalone: true,
214
- template: '<ng-content></ng-content>',
215
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
216
- providers: [provideInstanceRef(NgtLatheGeometry)],
217
- }]
218
- }], ctorParameters: function () { return []; } });
219
-
220
- // GENERATED - AngularThree v1.0.0
221
- class NgtOctahedronGeometry extends THREE.OctahedronGeometry {
222
- constructor() {
223
- super(...(injectArgs({ optional: true }) || []));
224
- return proxify(this, { attach: 'geometry' });
225
- }
226
- }
227
- NgtOctahedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtOctahedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
228
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
229
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtOctahedronGeometry, decorators: [{
230
- type: Component,
231
- args: [{
232
- selector: 'ngt-octahedron-geometry',
233
- standalone: true,
234
- template: '<ng-content></ng-content>',
235
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
236
- providers: [provideInstanceRef(NgtOctahedronGeometry)],
237
- }]
238
- }], ctorParameters: function () { return []; } });
239
-
240
- // GENERATED - AngularThree v1.0.0
241
- class NgtPlaneGeometry extends THREE.PlaneGeometry {
242
- constructor() {
243
- super(...(injectArgs({ optional: true }) || []));
244
- return proxify(this, { attach: 'geometry' });
245
- }
246
- }
247
- NgtPlaneGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPlaneGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
248
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
249
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPlaneGeometry, decorators: [{
250
- type: Component,
251
- args: [{
252
- selector: 'ngt-plane-geometry',
253
- standalone: true,
254
- template: '<ng-content></ng-content>',
255
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
256
- providers: [provideInstanceRef(NgtPlaneGeometry)],
257
- }]
258
- }], ctorParameters: function () { return []; } });
259
-
260
- // GENERATED - AngularThree v1.0.0
261
- class NgtPolyhedronGeometry extends THREE.PolyhedronGeometry {
262
- constructor() {
263
- super(...(injectArgs({ optional: true }) || []));
264
- return proxify(this, { attach: 'geometry' });
265
- }
266
- }
267
- NgtPolyhedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPolyhedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
268
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
269
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPolyhedronGeometry, decorators: [{
270
- type: Component,
271
- args: [{
272
- selector: 'ngt-polyhedron-geometry',
273
- standalone: true,
274
- template: '<ng-content></ng-content>',
275
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
276
- providers: [provideInstanceRef(NgtPolyhedronGeometry)],
277
- }]
278
- }], ctorParameters: function () { return []; } });
279
-
280
- // GENERATED - AngularThree v1.0.0
281
- class NgtRingGeometry extends THREE.RingGeometry {
282
- constructor() {
283
- super(...(injectArgs({ optional: true }) || []));
284
- return proxify(this, { attach: 'geometry' });
285
- }
286
- }
287
- NgtRingGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRingGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
288
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
289
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRingGeometry, decorators: [{
290
- type: Component,
291
- args: [{
292
- selector: 'ngt-ring-geometry',
293
- standalone: true,
294
- template: '<ng-content></ng-content>',
295
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
296
- providers: [provideInstanceRef(NgtRingGeometry)],
297
- }]
298
- }], ctorParameters: function () { return []; } });
299
-
300
- // GENERATED - AngularThree v1.0.0
301
- class NgtShapeGeometry extends THREE.ShapeGeometry {
302
- constructor() {
303
- super(...(injectArgs({ optional: true }) || []));
304
- return proxify(this, { attach: 'geometry' });
305
- }
306
- }
307
- NgtShapeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShapeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
308
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
309
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShapeGeometry, decorators: [{
310
- type: Component,
311
- args: [{
312
- selector: 'ngt-shape-geometry',
313
- standalone: true,
314
- template: '<ng-content></ng-content>',
315
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
316
- providers: [provideInstanceRef(NgtShapeGeometry)],
317
- }]
318
- }], ctorParameters: function () { return []; } });
319
-
320
- // GENERATED - AngularThree v1.0.0
321
- class NgtSphereGeometry extends THREE.SphereGeometry {
322
- constructor() {
323
- super(...(injectArgs({ optional: true }) || []));
324
- return proxify(this, { attach: 'geometry' });
325
- }
326
- }
327
- NgtSphereGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSphereGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
328
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSphereGeometry, decorators: [{
330
- type: Component,
331
- args: [{
332
- selector: 'ngt-sphere-geometry',
333
- standalone: true,
334
- template: '<ng-content></ng-content>',
335
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
336
- providers: [provideInstanceRef(NgtSphereGeometry)],
337
- }]
338
- }], ctorParameters: function () { return []; } });
339
-
340
- // GENERATED - AngularThree v1.0.0
341
- class NgtTetrahedronGeometry extends THREE.TetrahedronGeometry {
342
- constructor() {
343
- super(...(injectArgs({ optional: true }) || []));
344
- return proxify(this, { attach: 'geometry' });
345
- }
346
- }
347
- NgtTetrahedronGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTetrahedronGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
348
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
349
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTetrahedronGeometry, decorators: [{
350
- type: Component,
351
- args: [{
352
- selector: 'ngt-tetrahedron-geometry',
353
- standalone: true,
354
- template: '<ng-content></ng-content>',
355
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
356
- providers: [provideInstanceRef(NgtTetrahedronGeometry)],
357
- }]
358
- }], ctorParameters: function () { return []; } });
359
-
360
- // GENERATED - AngularThree v1.0.0
361
- class NgtTorusGeometry extends THREE.TorusGeometry {
362
- constructor() {
363
- super(...(injectArgs({ optional: true }) || []));
364
- return proxify(this, { attach: 'geometry' });
365
- }
366
- }
367
- NgtTorusGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTorusGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
368
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
369
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTorusGeometry, decorators: [{
370
- type: Component,
371
- args: [{
372
- selector: 'ngt-torus-geometry',
373
- standalone: true,
374
- template: '<ng-content></ng-content>',
375
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
376
- providers: [provideInstanceRef(NgtTorusGeometry)],
377
- }]
378
- }], ctorParameters: function () { return []; } });
379
-
380
- // GENERATED - AngularThree v1.0.0
381
- class NgtTorusKnotGeometry extends THREE.TorusKnotGeometry {
382
- constructor() {
383
- super(...(injectArgs({ optional: true }) || []));
384
- return proxify(this, { attach: 'geometry' });
385
- }
386
- }
387
- NgtTorusKnotGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTorusKnotGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
388
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
389
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTorusKnotGeometry, decorators: [{
390
- type: Component,
391
- args: [{
392
- selector: 'ngt-torus-knot-geometry',
393
- standalone: true,
394
- template: '<ng-content></ng-content>',
395
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
396
- providers: [provideInstanceRef(NgtTorusKnotGeometry)],
397
- }]
398
- }], ctorParameters: function () { return []; } });
399
-
400
- // GENERATED - AngularThree v1.0.0
401
- class NgtTubeGeometry extends THREE.TubeGeometry {
402
- constructor() {
403
- super(...(injectArgs({ optional: true }) || []));
404
- return proxify(this, { attach: 'geometry' });
405
- }
406
- }
407
- NgtTubeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTubeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
408
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
409
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtTubeGeometry, decorators: [{
410
- type: Component,
411
- args: [{
412
- selector: 'ngt-tube-geometry',
413
- standalone: true,
414
- template: '<ng-content></ng-content>',
415
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
416
- providers: [provideInstanceRef(NgtTubeGeometry)],
417
- }]
418
- }], ctorParameters: function () { return []; } });
419
-
420
- // GENERATED - AngularThree v1.0.0
421
- class NgtWireframeGeometry extends THREE.WireframeGeometry {
422
- constructor() {
423
- super(...(injectArgs({ optional: true }) || []));
424
- return proxify(this, { attach: 'geometry' });
425
- }
426
- }
427
- NgtWireframeGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtWireframeGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
428
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
429
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtWireframeGeometry, decorators: [{
430
- type: Component,
431
- args: [{
432
- selector: 'ngt-wireframe-geometry',
433
- standalone: true,
434
- template: '<ng-content></ng-content>',
435
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
436
- providers: [provideInstanceRef(NgtWireframeGeometry)],
437
- }]
438
- }], ctorParameters: function () { return []; } });
439
-
440
- // GENERATED - AngularThree v1.0.0
441
- class NgtBufferGeometry extends THREE.BufferGeometry {
442
- constructor() {
443
- super(...(injectArgs({ optional: true }) || []));
444
- return proxify(this, { attach: 'geometry' });
445
- }
446
- }
447
- NgtBufferGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBufferGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
448
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
449
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBufferGeometry, decorators: [{
450
- type: Component,
451
- args: [{
452
- selector: 'ngt-buffer-geometry',
453
- standalone: true,
454
- template: '<ng-content></ng-content>',
455
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
456
- providers: [provideInstanceRef(NgtBufferGeometry)],
457
- }]
458
- }], ctorParameters: function () { return []; } });
459
-
460
- // GENERATED - AngularThree v1.0.0
461
- class NgtInstancedBufferGeometry extends THREE.InstancedBufferGeometry {
462
- constructor() {
463
- super(...(injectArgs({ optional: true }) || []));
464
- return proxify(this, { attach: 'geometry' });
465
- }
466
- }
467
- NgtInstancedBufferGeometry.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedBufferGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component });
468
- 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, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
469
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedBufferGeometry, decorators: [{
470
- type: Component,
471
- args: [{
472
- selector: 'ngt-instanced-buffer-geometry',
473
- standalone: true,
474
- template: '<ng-content></ng-content>',
475
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
476
- providers: [provideInstanceRef(NgtInstancedBufferGeometry)],
477
- }]
478
- }], ctorParameters: function () { return []; } });
479
-
480
- // GENERATED - AngularThree v1.0.0
481
-
482
- /**
483
- * Generated bundle index. Do not edit.
484
- */
485
-
486
- export { NgtBoxGeometry, NgtBufferGeometry, NgtCapsuleGeometry, NgtCircleGeometry, NgtConeGeometry, NgtCylinderGeometry, NgtDodecahedronGeometry, NgtEdgesGeometry, NgtExtrudeGeometry, NgtIcosahedronGeometry, NgtInstancedBufferGeometry, NgtLatheGeometry, NgtOctahedronGeometry, NgtPlaneGeometry, NgtPolyhedronGeometry, NgtRingGeometry, NgtShapeGeometry, NgtSphereGeometry, NgtTetrahedronGeometry, NgtTorusGeometry, NgtTorusKnotGeometry, NgtTubeGeometry, NgtWireframeGeometry };
487
- //# sourceMappingURL=angular-three-geometries.mjs.map
488
- //# sourceMappingURL=angular-three-geometries.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"angular-three-geometries.mjs","sources":["../../../../packages/angular-three/geometries/src/lib/common.ts","../../../../packages/angular-three/geometries/src/lib/box-geometry/box-geometry.ts","../../../../packages/angular-three/geometries/src/lib/capsule-geometry/capsule-geometry.ts","../../../../packages/angular-three/geometries/src/lib/circle-geometry/circle-geometry.ts","../../../../packages/angular-three/geometries/src/lib/cone-geometry/cone-geometry.ts","../../../../packages/angular-three/geometries/src/lib/cylinder-geometry/cylinder-geometry.ts","../../../../packages/angular-three/geometries/src/lib/dodecahedron-geometry/dodecahedron-geometry.ts","../../../../packages/angular-three/geometries/src/lib/edges-geometry/edges-geometry.ts","../../../../packages/angular-three/geometries/src/lib/extrude-geometry/extrude-geometry.ts","../../../../packages/angular-three/geometries/src/lib/icosahedron-geometry/icosahedron-geometry.ts","../../../../packages/angular-three/geometries/src/lib/lathe-geometry/lathe-geometry.ts","../../../../packages/angular-three/geometries/src/lib/octahedron-geometry/octahedron-geometry.ts","../../../../packages/angular-three/geometries/src/lib/plane-geometry/plane-geometry.ts","../../../../packages/angular-three/geometries/src/lib/polyhedron-geometry/polyhedron-geometry.ts","../../../../packages/angular-three/geometries/src/lib/ring-geometry/ring-geometry.ts","../../../../packages/angular-three/geometries/src/lib/shape-geometry/shape-geometry.ts","../../../../packages/angular-three/geometries/src/lib/sphere-geometry/sphere-geometry.ts","../../../../packages/angular-three/geometries/src/lib/tetrahedron-geometry/tetrahedron-geometry.ts","../../../../packages/angular-three/geometries/src/lib/torus-geometry/torus-geometry.ts","../../../../packages/angular-three/geometries/src/lib/torus-knot-geometry/torus-knot-geometry.ts","../../../../packages/angular-three/geometries/src/lib/tube-geometry/tube-geometry.ts","../../../../packages/angular-three/geometries/src/lib/wireframe-geometry/wireframe-geometry.ts","../../../../packages/angular-three/geometries/src/lib/buffer-geometry/buffer-geometry.ts","../../../../packages/angular-three/geometries/src/lib/instanced-buffer-geometry/instanced-buffer-geometry.ts","../../../../packages/angular-three/geometries/src/index.ts","../../../../packages/angular-three/geometries/src/angular-three-geometries.ts"],"sourcesContent":["// GENERATED - AngularThree v1.0.0\nexport const NGT_INSTANCE_INPUTS = [\n 'ref',\n 'attach',\n 'skipWrapper',\n 'skipInit',\n 'noAttach',\n 'beforeRender',\n 'priority',\n 'updateCallback',\n 'readyCallback',\n];\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-box-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtBoxGeometry)],\n})\nexport class NgtBoxGeometry extends THREE.BoxGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.BoxGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-capsule-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtCapsuleGeometry)],\n})\nexport class NgtCapsuleGeometry extends THREE.CapsuleGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.CapsuleGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-circle-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtCircleGeometry)],\n})\nexport class NgtCircleGeometry extends THREE.CircleGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.CircleGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-cone-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtConeGeometry)],\n})\nexport class NgtConeGeometry extends THREE.ConeGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.ConeGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-cylinder-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtCylinderGeometry)],\n})\nexport class NgtCylinderGeometry extends THREE.CylinderGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.CylinderGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-dodecahedron-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtDodecahedronGeometry)],\n})\nexport class NgtDodecahedronGeometry extends THREE.DodecahedronGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.DodecahedronGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-edges-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtEdgesGeometry)],\n})\nexport class NgtEdgesGeometry extends THREE.EdgesGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.EdgesGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-extrude-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtExtrudeGeometry)],\n})\nexport class NgtExtrudeGeometry extends THREE.ExtrudeGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.ExtrudeGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-icosahedron-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtIcosahedronGeometry)],\n})\nexport class NgtIcosahedronGeometry extends THREE.IcosahedronGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.IcosahedronGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-lathe-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtLatheGeometry)],\n})\nexport class NgtLatheGeometry extends THREE.LatheGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.LatheGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-octahedron-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtOctahedronGeometry)],\n})\nexport class NgtOctahedronGeometry extends THREE.OctahedronGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.OctahedronGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-plane-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtPlaneGeometry)],\n})\nexport class NgtPlaneGeometry extends THREE.PlaneGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.PlaneGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-polyhedron-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtPolyhedronGeometry)],\n})\nexport class NgtPolyhedronGeometry extends THREE.PolyhedronGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.PolyhedronGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-ring-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtRingGeometry)],\n})\nexport class NgtRingGeometry extends THREE.RingGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.RingGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-shape-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtShapeGeometry)],\n})\nexport class NgtShapeGeometry extends THREE.ShapeGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.ShapeGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-sphere-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtSphereGeometry)],\n})\nexport class NgtSphereGeometry extends THREE.SphereGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.SphereGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-tetrahedron-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtTetrahedronGeometry)],\n})\nexport class NgtTetrahedronGeometry extends THREE.TetrahedronGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.TetrahedronGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-torus-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtTorusGeometry)],\n})\nexport class NgtTorusGeometry extends THREE.TorusGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.TorusGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-torus-knot-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtTorusKnotGeometry)],\n})\nexport class NgtTorusKnotGeometry extends THREE.TorusKnotGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.TorusKnotGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-tube-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtTubeGeometry)],\n})\nexport class NgtTubeGeometry extends THREE.TubeGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.TubeGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-wireframe-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtWireframeGeometry)],\n})\nexport class NgtWireframeGeometry extends THREE.WireframeGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.WireframeGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-buffer-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtBufferGeometry)],\n})\nexport class NgtBufferGeometry extends THREE.BufferGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.BufferGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-instanced-buffer-geometry',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtInstancedBufferGeometry)],\n})\nexport class NgtInstancedBufferGeometry extends THREE.InstancedBufferGeometry {\n constructor() {\n super(...(injectArgs<typeof THREE.InstancedBufferGeometry>({ optional: true }) || []));\n return proxify(this, { attach: 'geometry' });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nexport * from './lib/box-geometry/box-geometry';\nexport * from './lib/capsule-geometry/capsule-geometry';\nexport * from './lib/circle-geometry/circle-geometry';\nexport * from './lib/cone-geometry/cone-geometry';\nexport * from './lib/cylinder-geometry/cylinder-geometry';\nexport * from './lib/dodecahedron-geometry/dodecahedron-geometry';\nexport * from './lib/edges-geometry/edges-geometry';\nexport * from './lib/extrude-geometry/extrude-geometry';\nexport * from './lib/icosahedron-geometry/icosahedron-geometry';\nexport * from './lib/lathe-geometry/lathe-geometry';\nexport * from './lib/octahedron-geometry/octahedron-geometry';\nexport * from './lib/plane-geometry/plane-geometry';\nexport * from './lib/polyhedron-geometry/polyhedron-geometry';\nexport * from './lib/ring-geometry/ring-geometry';\nexport * from './lib/shape-geometry/shape-geometry';\nexport * from './lib/sphere-geometry/sphere-geometry';\nexport * from './lib/tetrahedron-geometry/tetrahedron-geometry';\nexport * from './lib/torus-geometry/torus-geometry';\nexport * from './lib/torus-knot-geometry/torus-knot-geometry';\nexport * from './lib/tube-geometry/tube-geometry';\nexport * from './lib/wireframe-geometry/wireframe-geometry';\nexport * from './lib/buffer-geometry/buffer-geometry';\nexport * from './lib/instanced-buffer-geometry/instanced-buffer-geometry';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}