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