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.
- package/esm2020/angular-three.mjs +1 -1
- package/esm2020/index.mjs +2 -35
- package/esm2020/lib/canvas.mjs +141 -128
- package/esm2020/lib/di/catalogue.mjs +7 -0
- package/esm2020/lib/directives/args.mjs +37 -17
- package/esm2020/lib/directives/repeat.mjs +5 -8
- package/esm2020/lib/events.mjs +341 -52
- package/esm2020/lib/loader.mjs +55 -0
- package/esm2020/lib/loop.mjs +137 -0
- package/esm2020/lib/renderer/di.mjs +3 -0
- package/esm2020/lib/renderer/enums.mjs +2 -0
- package/esm2020/lib/renderer/provider.mjs +19 -0
- package/esm2020/lib/renderer/renderer.mjs +293 -0
- package/esm2020/lib/renderer/state.mjs +350 -0
- package/esm2020/lib/renderer/utils.mjs +177 -0
- package/esm2020/lib/stores/rx-store.mjs +99 -0
- package/esm2020/lib/stores/store.mjs +190 -239
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/lib/utils/apply-props.mjs +37 -80
- package/esm2020/lib/utils/attach.mjs +29 -0
- package/esm2020/lib/utils/instance.mjs +43 -28
- package/esm2020/lib/utils/is.mjs +7 -11
- package/esm2020/lib/utils/make.mjs +30 -10
- package/esm2020/lib/utils/update.mjs +37 -0
- package/esm2020/lib/web/events.mjs +68 -0
- package/fesm2015/angular-three.mjs +2053 -2046
- package/fesm2015/angular-three.mjs.map +1 -1
- package/fesm2020/angular-three.mjs +2003 -1990
- package/fesm2020/angular-three.mjs.map +1 -1
- package/index.d.ts +1 -34
- package/lib/canvas.d.ts +29 -28
- package/lib/di/catalogue.d.ts +3 -0
- package/lib/directives/args.d.ts +8 -12
- package/lib/events.d.ts +7 -2
- package/lib/loader.d.ts +15 -0
- package/lib/{utils/loop.d.ts → loop.d.ts} +7 -6
- package/lib/renderer/di.d.ts +2 -0
- package/lib/renderer/enums.d.ts +25 -0
- package/lib/renderer/provider.d.ts +25 -0
- package/lib/renderer/renderer.d.ts +49 -0
- package/lib/renderer/state.d.ts +59 -0
- package/lib/renderer/utils.d.ts +20 -0
- package/lib/stores/rx-store.d.ts +17 -0
- package/lib/stores/store.d.ts +6 -23
- package/lib/types.d.ts +182 -191
- package/lib/utils/apply-props.d.ts +2 -6
- package/lib/utils/attach.d.ts +3 -0
- package/lib/utils/instance.d.ts +3 -3
- package/lib/utils/is.d.ts +6 -10
- package/lib/utils/make.d.ts +5 -2
- package/lib/utils/update.d.ts +4 -0
- package/lib/web/events.d.ts +4 -0
- package/package.json +30 -99
- package/attributes/README.md +0 -3
- package/attributes/index.d.ts +0 -22
- package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +0 -8
- package/attributes/lib/color-attribute/color-attribute.d.ts +0 -8
- package/attributes/lib/common.d.ts +0 -1
- package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +0 -8
- package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +0 -8
- package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +0 -8
- package/attributes/lib/fog-attribute/fog-attribute.d.ts +0 -8
- package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +0 -8
- package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +0 -8
- package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +0 -8
- package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +0 -8
- package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +0 -8
- package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +0 -8
- package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +0 -8
- package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +0 -8
- package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +0 -8
- package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +0 -8
- package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +0 -8
- package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +0 -8
- package/attributes/lib/value-attribute/value-attribute.d.ts +0 -8
- package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +0 -8
- package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +0 -8
- package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +0 -8
- package/audios/README.md +0 -3
- package/audios/index.d.ts +0 -3
- package/audios/lib/audio/audio.d.ts +0 -49
- package/audios/lib/audio-listener/audio-listener.d.ts +0 -35
- package/audios/lib/common.d.ts +0 -3
- package/audios/lib/positional-audio/positional-audio.d.ts +0 -49
- package/cameras/README.md +0 -3
- package/cameras/index.d.ts +0 -5
- package/cameras/lib/array-camera/array-camera.d.ts +0 -56
- package/cameras/lib/common.d.ts +0 -3
- package/cameras/lib/cube-camera/cube-camera.d.ts +0 -36
- package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +0 -54
- package/cameras/lib/perspective-camera/perspective-camera.d.ts +0 -55
- package/cameras/lib/stereo-camera/stereo-camera.d.ts +0 -42
- package/esm2020/attributes/angular-three-attributes.mjs +0 -5
- package/esm2020/attributes/index.mjs +0 -24
- package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +0 -26
- package/esm2020/attributes/lib/common.mjs +0 -13
- package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +0 -26
- package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +0 -26
- package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +0 -30
- package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +0 -26
- package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +0 -26
- package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +0 -26
- package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +0 -28
- package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +0 -26
- package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +0 -26
- package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +0 -26
- package/esm2020/audios/angular-three-audios.mjs +0 -5
- package/esm2020/audios/index.mjs +0 -5
- package/esm2020/audios/lib/audio/audio.mjs +0 -45
- package/esm2020/audios/lib/audio-listener/audio-listener.mjs +0 -38
- package/esm2020/audios/lib/common.mjs +0 -54
- package/esm2020/audios/lib/positional-audio/positional-audio.mjs +0 -45
- package/esm2020/cameras/angular-three-cameras.mjs +0 -5
- package/esm2020/cameras/index.mjs +0 -7
- package/esm2020/cameras/lib/array-camera/array-camera.mjs +0 -44
- package/esm2020/cameras/lib/common.mjs +0 -54
- package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +0 -30
- package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +0 -42
- package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +0 -43
- package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +0 -38
- package/esm2020/geometries/angular-three-geometries.mjs +0 -5
- package/esm2020/geometries/index.mjs +0 -25
- package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +0 -26
- package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +0 -26
- package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +0 -26
- package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +0 -26
- package/esm2020/geometries/lib/common.mjs +0 -13
- package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +0 -26
- package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +0 -26
- package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +0 -26
- package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +0 -26
- package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +0 -26
- package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +0 -26
- package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +0 -26
- package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +0 -26
- package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +0 -26
- package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +0 -26
- package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +0 -26
- package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +0 -26
- package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +0 -26
- package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +0 -26
- package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +0 -26
- package/esm2020/helpers/angular-three-helpers.mjs +0 -5
- package/esm2020/helpers/index.mjs +0 -15
- package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +0 -26
- package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +0 -26
- package/esm2020/helpers/lib/box-helper/box-helper.mjs +0 -36
- package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +0 -36
- package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +0 -36
- package/esm2020/helpers/lib/common.mjs +0 -13
- package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +0 -36
- package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +0 -26
- package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +0 -36
- package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +0 -36
- package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +0 -36
- package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +0 -26
- package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +0 -36
- package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +0 -36
- package/esm2020/lib/di/resize.mjs +0 -19
- package/esm2020/lib/di/window.mjs +0 -13
- package/esm2020/lib/directives/cursor.mjs +0 -35
- package/esm2020/lib/instance.mjs +0 -368
- package/esm2020/lib/pipes/math.mjs +0 -15
- package/esm2020/lib/pipes/pi.mjs +0 -14
- package/esm2020/lib/pipes/radian.mjs +0 -14
- package/esm2020/lib/pipes/side.mjs +0 -22
- package/esm2020/lib/ref.mjs +0 -15
- package/esm2020/lib/services/loader.mjs +0 -45
- package/esm2020/lib/services/resize.mjs +0 -127
- package/esm2020/lib/stores/component-store.mjs +0 -137
- package/esm2020/lib/utils/build-graph.mjs +0 -15
- package/esm2020/lib/utils/camera.mjs +0 -28
- package/esm2020/lib/utils/capitalize.mjs +0 -4
- package/esm2020/lib/utils/check-update.mjs +0 -22
- package/esm2020/lib/utils/events.mjs +0 -353
- package/esm2020/lib/utils/get-instance-local-state.mjs +0 -6
- package/esm2020/lib/utils/inject.mjs +0 -18
- package/esm2020/lib/utils/loop.mjs +0 -139
- package/esm2020/lib/utils/mutate.mjs +0 -24
- package/esm2020/lib/utils/proxy.mjs +0 -99
- package/esm2020/lib/utils/renderer.mjs +0 -15
- package/esm2020/lights/angular-three-lights.mjs +0 -5
- package/esm2020/lights/index.mjs +0 -11
- package/esm2020/lights/lib/ambient-light/ambient-light.mjs +0 -30
- package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +0 -30
- package/esm2020/lights/lib/common.mjs +0 -54
- package/esm2020/lights/lib/directional-light/directional-light.mjs +0 -30
- package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +0 -30
- package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +0 -30
- package/esm2020/lights/lib/light-probe/light-probe.mjs +0 -30
- package/esm2020/lights/lib/point-light/point-light.mjs +0 -30
- package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +0 -30
- package/esm2020/lights/lib/spot-light/spot-light.mjs +0 -42
- package/esm2020/materials/angular-three-materials.mjs +0 -5
- package/esm2020/materials/index.mjs +0 -19
- package/esm2020/materials/lib/common.mjs +0 -13
- package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +0 -77
- package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +0 -80
- package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +0 -89
- package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +0 -80
- package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +0 -80
- package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +0 -100
- package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +0 -86
- package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +0 -83
- package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +0 -103
- package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +0 -119
- package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +0 -100
- package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +0 -96
- package/esm2020/materials/lib/points-material/points-material.mjs +0 -78
- package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +0 -83
- package/esm2020/materials/lib/shader-material/shader-material.mjs +0 -83
- package/esm2020/materials/lib/shadow-material/shadow-material.mjs +0 -74
- package/esm2020/materials/lib/sprite-material/sprite-material.mjs +0 -78
- package/esm2020/objects/angular-three-objects.mjs +0 -5
- package/esm2020/objects/index.mjs +0 -14
- package/esm2020/objects/lib/bone/bone.mjs +0 -27
- package/esm2020/objects/lib/common.mjs +0 -54
- package/esm2020/objects/lib/group/group.mjs +0 -27
- package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +0 -40
- package/esm2020/objects/lib/line/line.mjs +0 -30
- package/esm2020/objects/lib/line-loop/line-loop.mjs +0 -30
- package/esm2020/objects/lib/line-segments/line-segments.mjs +0 -30
- package/esm2020/objects/lib/lod/lod.mjs +0 -30
- package/esm2020/objects/lib/mesh/mesh.mjs +0 -30
- package/esm2020/objects/lib/points/points.mjs +0 -30
- package/esm2020/objects/lib/skeleton/skeleton.mjs +0 -41
- package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +0 -39
- package/esm2020/objects/lib/sprite/sprite.mjs +0 -30
- package/esm2020/primitives/angular-three-primitives.mjs +0 -5
- package/esm2020/primitives/index.mjs +0 -3
- package/esm2020/primitives/lib/common.mjs +0 -54
- package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +0 -27
- package/esm2020/primitives/lib/primitive/primitive.mjs +0 -38
- package/esm2020/stats/angular-three-stats.mjs +0 -5
- package/esm2020/stats/index.mjs +0 -2
- package/esm2020/stats/lib/stats/stats.mjs +0 -54
- package/esm2020/textures/angular-three-textures.mjs +0 -5
- package/esm2020/textures/index.mjs +0 -12
- package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +0 -26
- package/esm2020/textures/lib/common.mjs +0 -13
- package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +0 -26
- package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +0 -26
- package/esm2020/textures/lib/cube-texture/cube-texture.mjs +0 -26
- package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +0 -26
- package/esm2020/textures/lib/data-texture/data-texture.mjs +0 -26
- package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +0 -26
- package/esm2020/textures/lib/depth-texture/depth-texture.mjs +0 -26
- package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +0 -26
- package/esm2020/textures/lib/video-texture/video-texture.mjs +0 -26
- package/fesm2015/angular-three-attributes.mjs +0 -475
- package/fesm2015/angular-three-attributes.mjs.map +0 -1
- package/fesm2015/angular-three-audios.mjs +0 -179
- package/fesm2015/angular-three-audios.mjs.map +0 -1
- package/fesm2015/angular-three-cameras.mjs +0 -236
- package/fesm2015/angular-three-cameras.mjs.map +0 -1
- package/fesm2015/angular-three-geometries.mjs +0 -488
- package/fesm2015/angular-three-geometries.mjs.map +0 -1
- package/fesm2015/angular-three-helpers.mjs +0 -378
- package/fesm2015/angular-three-helpers.mjs.map +0 -1
- package/fesm2015/angular-three-lights.mjs +0 -297
- package/fesm2015/angular-three-lights.mjs.map +0 -1
- package/fesm2015/angular-three-materials.mjs +0 -1415
- package/fesm2015/angular-three-materials.mjs.map +0 -1
- package/fesm2015/angular-three-objects.mjs +0 -381
- package/fesm2015/angular-three-objects.mjs.map +0 -1
- package/fesm2015/angular-three-primitives.mjs +0 -120
- package/fesm2015/angular-three-primitives.mjs.map +0 -1
- package/fesm2015/angular-three-stats.mjs +0 -62
- package/fesm2015/angular-three-stats.mjs.map +0 -1
- package/fesm2015/angular-three-textures.mjs +0 -228
- package/fesm2015/angular-three-textures.mjs.map +0 -1
- package/fesm2020/angular-three-attributes.mjs +0 -475
- package/fesm2020/angular-three-attributes.mjs.map +0 -1
- package/fesm2020/angular-three-audios.mjs +0 -179
- package/fesm2020/angular-three-audios.mjs.map +0 -1
- package/fesm2020/angular-three-cameras.mjs +0 -236
- package/fesm2020/angular-three-cameras.mjs.map +0 -1
- package/fesm2020/angular-three-geometries.mjs +0 -488
- package/fesm2020/angular-three-geometries.mjs.map +0 -1
- package/fesm2020/angular-three-helpers.mjs +0 -378
- package/fesm2020/angular-three-helpers.mjs.map +0 -1
- package/fesm2020/angular-three-lights.mjs +0 -297
- package/fesm2020/angular-three-lights.mjs.map +0 -1
- package/fesm2020/angular-three-materials.mjs +0 -1415
- package/fesm2020/angular-three-materials.mjs.map +0 -1
- package/fesm2020/angular-three-objects.mjs +0 -381
- package/fesm2020/angular-three-objects.mjs.map +0 -1
- package/fesm2020/angular-three-primitives.mjs +0 -120
- package/fesm2020/angular-three-primitives.mjs.map +0 -1
- package/fesm2020/angular-three-stats.mjs +0 -62
- package/fesm2020/angular-three-stats.mjs.map +0 -1
- package/fesm2020/angular-three-textures.mjs +0 -228
- package/fesm2020/angular-three-textures.mjs.map +0 -1
- package/geometries/README.md +0 -3
- package/geometries/index.d.ts +0 -23
- package/geometries/lib/box-geometry/box-geometry.d.ts +0 -8
- package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +0 -8
- package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +0 -8
- package/geometries/lib/circle-geometry/circle-geometry.d.ts +0 -8
- package/geometries/lib/common.d.ts +0 -1
- package/geometries/lib/cone-geometry/cone-geometry.d.ts +0 -8
- package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +0 -8
- package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +0 -8
- package/geometries/lib/edges-geometry/edges-geometry.d.ts +0 -8
- package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +0 -8
- package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +0 -8
- package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +0 -8
- package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +0 -8
- package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +0 -8
- package/geometries/lib/plane-geometry/plane-geometry.d.ts +0 -8
- package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +0 -8
- package/geometries/lib/ring-geometry/ring-geometry.d.ts +0 -8
- package/geometries/lib/shape-geometry/shape-geometry.d.ts +0 -8
- package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +0 -8
- package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +0 -8
- package/geometries/lib/torus-geometry/torus-geometry.d.ts +0 -8
- package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +0 -8
- package/geometries/lib/tube-geometry/tube-geometry.d.ts +0 -8
- package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +0 -8
- package/helpers/README.md +0 -3
- package/helpers/index.d.ts +0 -13
- package/helpers/lib/arrow-helper/arrow-helper.d.ts +0 -8
- package/helpers/lib/axes-helper/axes-helper.d.ts +0 -8
- package/helpers/lib/box-helper/box-helper.d.ts +0 -8
- package/helpers/lib/box3-helper/box3-helper.d.ts +0 -8
- package/helpers/lib/camera-helper/camera-helper.d.ts +0 -8
- package/helpers/lib/common.d.ts +0 -1
- package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +0 -8
- package/helpers/lib/grid-helper/grid-helper.d.ts +0 -8
- package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +0 -8
- package/helpers/lib/plane-helper/plane-helper.d.ts +0 -8
- package/helpers/lib/point-light-helper/point-light-helper.d.ts +0 -8
- package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +0 -8
- package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +0 -8
- package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +0 -8
- package/lib/di/resize.d.ts +0 -12
- package/lib/di/window.d.ts +0 -1
- package/lib/directives/cursor.d.ts +0 -7
- package/lib/instance.d.ts +0 -81
- package/lib/pipes/math.d.ts +0 -7
- package/lib/pipes/pi.d.ts +0 -7
- package/lib/pipes/radian.d.ts +0 -7
- package/lib/pipes/side.d.ts +0 -8
- package/lib/ref.d.ts +0 -5
- package/lib/services/loader.d.ts +0 -11
- package/lib/services/resize.d.ts +0 -19
- package/lib/stores/component-store.d.ts +0 -69
- package/lib/utils/build-graph.d.ts +0 -3
- package/lib/utils/camera.d.ts +0 -4
- package/lib/utils/capitalize.d.ts +0 -1
- package/lib/utils/check-update.d.ts +0 -2
- package/lib/utils/events.d.ts +0 -6
- package/lib/utils/get-instance-local-state.d.ts +0 -2
- package/lib/utils/inject.d.ts +0 -9
- package/lib/utils/mutate.d.ts +0 -2
- package/lib/utils/proxy.d.ts +0 -7
- package/lib/utils/renderer.d.ts +0 -3
- package/lights/README.md +0 -3
- package/lights/index.d.ts +0 -9
- package/lights/lib/ambient-light/ambient-light.d.ts +0 -39
- package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +0 -40
- package/lights/lib/common.d.ts +0 -3
- package/lights/lib/directional-light/directional-light.d.ts +0 -40
- package/lights/lib/hemisphere-light/hemisphere-light.d.ts +0 -41
- package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +0 -42
- package/lights/lib/light-probe/light-probe.d.ts +0 -40
- package/lights/lib/point-light/point-light.d.ts +0 -42
- package/lights/lib/rect-area-light/rect-area-light.d.ts +0 -42
- package/lights/lib/spot-light/spot-light.d.ts +0 -45
- package/materials/README.md +0 -3
- package/materials/index.d.ts +0 -17
- package/materials/lib/common.d.ts +0 -1
- package/materials/lib/line-basic-material/line-basic-material.d.ts +0 -55
- package/materials/lib/line-dashed-material/line-dashed-material.d.ts +0 -58
- package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +0 -67
- package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +0 -58
- package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +0 -58
- package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +0 -78
- package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +0 -64
- package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +0 -61
- package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +0 -81
- package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +0 -97
- package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +0 -78
- package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +0 -74
- package/materials/lib/points-material/points-material.d.ts +0 -56
- package/materials/lib/raw-shader-material/raw-shader-material.d.ts +0 -68
- package/materials/lib/shader-material/shader-material.d.ts +0 -68
- package/materials/lib/shadow-material/shadow-material.d.ts +0 -52
- package/materials/lib/sprite-material/sprite-material.d.ts +0 -56
- package/objects/README.md +0 -3
- package/objects/index.d.ts +0 -12
- package/objects/lib/bone/bone.d.ts +0 -35
- package/objects/lib/common.d.ts +0 -3
- package/objects/lib/group/group.d.ts +0 -35
- package/objects/lib/instanced-mesh/instanced-mesh.d.ts +0 -44
- package/objects/lib/line/line.d.ts +0 -41
- package/objects/lib/line-loop/line-loop.d.ts +0 -41
- package/objects/lib/line-segments/line-segments.d.ts +0 -41
- package/objects/lib/lod/lod.d.ts +0 -40
- package/objects/lib/mesh/mesh.d.ts +0 -41
- package/objects/lib/points/points.d.ts +0 -41
- package/objects/lib/skeleton/skeleton.d.ts +0 -16
- package/objects/lib/skinned-mesh/skinned-mesh.d.ts +0 -45
- package/objects/lib/sprite/sprite.d.ts +0 -38
- package/primitives/README.md +0 -3
- package/primitives/index.d.ts +0 -2
- package/primitives/lib/common.d.ts +0 -3
- package/primitives/lib/object-primitive/object-primitive.d.ts +0 -35
- package/primitives/lib/primitive/primitive.d.ts +0 -10
- package/schematics/README.md +0 -11
- package/stats/README.md +0 -3
- package/stats/index.d.ts +0 -1
- package/stats/lib/stats/stats.d.ts +0 -16
- package/textures/README.md +0 -3
- package/textures/index.d.ts +0 -10
- package/textures/lib/canvas-texture/canvas-texture.d.ts +0 -8
- package/textures/lib/common.d.ts +0 -1
- package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +0 -8
- package/textures/lib/compressed-texture/compressed-texture.d.ts +0 -8
- package/textures/lib/cube-texture/cube-texture.d.ts +0 -8
- package/textures/lib/data-array-texture/data-array-texture.d.ts +0 -8
- package/textures/lib/data-texture/data-texture.d.ts +0 -8
- package/textures/lib/data3-dtexture/data3-dtexture.d.ts +0 -8
- package/textures/lib/depth-texture/depth-texture.d.ts +0 -8
- package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +0 -8
- package/textures/lib/video-texture/video-texture.d.ts +0 -8
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import { NgtMatrix4, NgtVector3, NgtEuler, NgtQuaternion, NgtLayers, NgtObservableInput } from 'angular-three';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "angular-three";
|
|
5
|
-
export declare class NgtArrayCamera extends THREE.ArrayCamera {
|
|
6
|
-
constructor();
|
|
7
|
-
static ngAcceptInputType_cameras: NgtObservableInput<THREE.PerspectiveCamera[]>;
|
|
8
|
-
static ngAcceptInputType_zoom: NgtObservableInput<number>;
|
|
9
|
-
static ngAcceptInputType_fov: NgtObservableInput<number>;
|
|
10
|
-
static ngAcceptInputType_aspect: NgtObservableInput<number>;
|
|
11
|
-
static ngAcceptInputType_near: NgtObservableInput<number>;
|
|
12
|
-
static ngAcceptInputType_far: NgtObservableInput<number>;
|
|
13
|
-
static ngAcceptInputType_focus: NgtObservableInput<number>;
|
|
14
|
-
static ngAcceptInputType_view: NgtObservableInput<null | {
|
|
15
|
-
enabled: boolean;
|
|
16
|
-
fullWidth: number;
|
|
17
|
-
fullHeight: number;
|
|
18
|
-
offsetX: number;
|
|
19
|
-
offsetY: number;
|
|
20
|
-
width: number;
|
|
21
|
-
height: number;
|
|
22
|
-
}>;
|
|
23
|
-
static ngAcceptInputType_filmGauge: NgtObservableInput<number>;
|
|
24
|
-
static ngAcceptInputType_filmOffset: NgtObservableInput<number>;
|
|
25
|
-
static ngAcceptInputType_matrixWorldInverse: NgtObservableInput<NgtMatrix4>;
|
|
26
|
-
static ngAcceptInputType_projectionMatrix: NgtObservableInput<NgtMatrix4>;
|
|
27
|
-
static ngAcceptInputType_projectionMatrixInverse: NgtObservableInput<NgtMatrix4>;
|
|
28
|
-
static ngAcceptInputType_name: NgtObservableInput<string>;
|
|
29
|
-
static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;
|
|
30
|
-
static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;
|
|
31
|
-
static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;
|
|
32
|
-
static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;
|
|
33
|
-
static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;
|
|
34
|
-
static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;
|
|
35
|
-
static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;
|
|
36
|
-
static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;
|
|
37
|
-
static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;
|
|
38
|
-
static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;
|
|
39
|
-
static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;
|
|
40
|
-
static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;
|
|
41
|
-
static ngAcceptInputType_visible: NgtObservableInput<boolean>;
|
|
42
|
-
static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;
|
|
43
|
-
static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;
|
|
44
|
-
static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;
|
|
45
|
-
static ngAcceptInputType_renderOrder: NgtObservableInput<number>;
|
|
46
|
-
static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;
|
|
47
|
-
static ngAcceptInputType_userData: NgtObservableInput<{
|
|
48
|
-
[key: string]: any;
|
|
49
|
-
}>;
|
|
50
|
-
static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;
|
|
51
|
-
static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;
|
|
52
|
-
static ngAcceptInputType_onBeforeRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
53
|
-
static ngAcceptInputType_onAfterRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtArrayCamera, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtArrayCamera, "ngt-array-camera", never, { "cameras": "cameras"; "zoom": "zoom"; "fov": "fov"; "aspect": "aspect"; "near": "near"; "far": "far"; "focus": "focus"; "view": "view"; "filmGauge": "filmGauge"; "filmOffset": "filmOffset"; "matrixWorldInverse": "matrixWorldInverse"; "projectionMatrix": "projectionMatrix"; "projectionMatrixInverse": "projectionMatrixInverse"; "name": "name"; "position": "position"; "rotation": "rotation"; "quaternion": "quaternion"; "scale": "scale"; "modelViewMatrix": "modelViewMatrix"; "normalMatrix": "normalMatrix"; "matrix": "matrix"; "matrixWorld": "matrixWorld"; "matrixAutoUpdate": "matrixAutoUpdate"; "matrixWorldAutoUpdate": "matrixWorldAutoUpdate"; "matrixWorldNeedsUpdate": "matrixWorldNeedsUpdate"; "layers": "layers"; "visible": "visible"; "castShadow": "castShadow"; "receiveShadow": "receiveShadow"; "frustumCulled": "frustumCulled"; "renderOrder": "renderOrder"; "animations": "animations"; "userData": "userData"; "customDepthMaterial": "customDepthMaterial"; "customDistanceMaterial": "customDistanceMaterial"; "onBeforeRender": "onBeforeRender"; "onAfterRender": "onAfterRender"; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtInstance; inputs: { "ref": "ref"; "attach": "attach"; "skipWrapper": "skipWrapper"; "skipInit": "skipInit"; "noAttach": "noAttach"; "beforeRender": "beforeRender"; "priority": "priority"; "updateCallback": "updateCallback"; "readyCallback": "readyCallback"; }; outputs: { "click": "click"; "contextmenu": "contextmenu"; "dblclick": "dblclick"; "pointerup": "pointerup"; "pointerdown": "pointerdown"; "pointerover": "pointerover"; "pointerout": "pointerout"; "pointerenter": "pointerenter"; "pointerleave": "pointerleave"; "pointermove": "pointermove"; "pointermissed": "pointermissed"; "pointercancel": "pointercancel"; "wheel": "wheel"; }; }]>;
|
|
56
|
-
}
|
package/cameras/lib/common.d.ts
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import { NgtVector3, NgtEuler, NgtQuaternion, NgtMatrix4, NgtLayers, NgtObservableInput } from 'angular-three';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "angular-three";
|
|
5
|
-
export declare class NgtCubeCamera extends THREE.CubeCamera {
|
|
6
|
-
constructor();
|
|
7
|
-
static ngAcceptInputType_renderTarget: NgtObservableInput<THREE.WebGLCubeRenderTarget>;
|
|
8
|
-
static ngAcceptInputType_name: NgtObservableInput<string>;
|
|
9
|
-
static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;
|
|
10
|
-
static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;
|
|
11
|
-
static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;
|
|
12
|
-
static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;
|
|
13
|
-
static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;
|
|
14
|
-
static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;
|
|
15
|
-
static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;
|
|
16
|
-
static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;
|
|
17
|
-
static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;
|
|
18
|
-
static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;
|
|
19
|
-
static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;
|
|
20
|
-
static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;
|
|
21
|
-
static ngAcceptInputType_visible: NgtObservableInput<boolean>;
|
|
22
|
-
static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;
|
|
23
|
-
static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;
|
|
24
|
-
static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;
|
|
25
|
-
static ngAcceptInputType_renderOrder: NgtObservableInput<number>;
|
|
26
|
-
static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;
|
|
27
|
-
static ngAcceptInputType_userData: NgtObservableInput<{
|
|
28
|
-
[key: string]: any;
|
|
29
|
-
}>;
|
|
30
|
-
static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;
|
|
31
|
-
static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;
|
|
32
|
-
static ngAcceptInputType_onBeforeRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
33
|
-
static ngAcceptInputType_onAfterRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtCubeCamera, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtCubeCamera, "ngt-cube-camera", never, { "renderTarget": "renderTarget"; "name": "name"; "position": "position"; "rotation": "rotation"; "quaternion": "quaternion"; "scale": "scale"; "modelViewMatrix": "modelViewMatrix"; "normalMatrix": "normalMatrix"; "matrix": "matrix"; "matrixWorld": "matrixWorld"; "matrixAutoUpdate": "matrixAutoUpdate"; "matrixWorldAutoUpdate": "matrixWorldAutoUpdate"; "matrixWorldNeedsUpdate": "matrixWorldNeedsUpdate"; "layers": "layers"; "visible": "visible"; "castShadow": "castShadow"; "receiveShadow": "receiveShadow"; "frustumCulled": "frustumCulled"; "renderOrder": "renderOrder"; "animations": "animations"; "userData": "userData"; "customDepthMaterial": "customDepthMaterial"; "customDistanceMaterial": "customDistanceMaterial"; "onBeforeRender": "onBeforeRender"; "onAfterRender": "onAfterRender"; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtInstance; inputs: { "ref": "ref"; "attach": "attach"; "skipWrapper": "skipWrapper"; "skipInit": "skipInit"; "noAttach": "noAttach"; "beforeRender": "beforeRender"; "priority": "priority"; "updateCallback": "updateCallback"; "readyCallback": "readyCallback"; }; outputs: { "click": "click"; "contextmenu": "contextmenu"; "dblclick": "dblclick"; "pointerup": "pointerup"; "pointerdown": "pointerdown"; "pointerover": "pointerover"; "pointerout": "pointerout"; "pointerenter": "pointerenter"; "pointerleave": "pointerleave"; "pointermove": "pointermove"; "pointermissed": "pointermissed"; "pointercancel": "pointercancel"; "wheel": "wheel"; }; }]>;
|
|
36
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import { NgtMatrix4, NgtVector3, NgtEuler, NgtQuaternion, NgtLayers, NgtObservableInput } from 'angular-three';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "angular-three";
|
|
5
|
-
export declare class NgtOrthographicCamera extends THREE.OrthographicCamera {
|
|
6
|
-
constructor();
|
|
7
|
-
static ngAcceptInputType_zoom: NgtObservableInput<number>;
|
|
8
|
-
static ngAcceptInputType_view: NgtObservableInput<null | {
|
|
9
|
-
enabled: boolean;
|
|
10
|
-
fullWidth: number;
|
|
11
|
-
fullHeight: number;
|
|
12
|
-
offsetX: number;
|
|
13
|
-
offsetY: number;
|
|
14
|
-
width: number;
|
|
15
|
-
height: number;
|
|
16
|
-
}>;
|
|
17
|
-
static ngAcceptInputType_left: NgtObservableInput<number>;
|
|
18
|
-
static ngAcceptInputType_right: NgtObservableInput<number>;
|
|
19
|
-
static ngAcceptInputType_top: NgtObservableInput<number>;
|
|
20
|
-
static ngAcceptInputType_bottom: NgtObservableInput<number>;
|
|
21
|
-
static ngAcceptInputType_near: NgtObservableInput<number>;
|
|
22
|
-
static ngAcceptInputType_far: NgtObservableInput<number>;
|
|
23
|
-
static ngAcceptInputType_matrixWorldInverse: NgtObservableInput<NgtMatrix4>;
|
|
24
|
-
static ngAcceptInputType_projectionMatrix: NgtObservableInput<NgtMatrix4>;
|
|
25
|
-
static ngAcceptInputType_projectionMatrixInverse: NgtObservableInput<NgtMatrix4>;
|
|
26
|
-
static ngAcceptInputType_name: NgtObservableInput<string>;
|
|
27
|
-
static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;
|
|
28
|
-
static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;
|
|
29
|
-
static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;
|
|
30
|
-
static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;
|
|
31
|
-
static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;
|
|
32
|
-
static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;
|
|
33
|
-
static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;
|
|
34
|
-
static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;
|
|
35
|
-
static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;
|
|
36
|
-
static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;
|
|
37
|
-
static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;
|
|
38
|
-
static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;
|
|
39
|
-
static ngAcceptInputType_visible: NgtObservableInput<boolean>;
|
|
40
|
-
static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;
|
|
41
|
-
static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;
|
|
42
|
-
static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;
|
|
43
|
-
static ngAcceptInputType_renderOrder: NgtObservableInput<number>;
|
|
44
|
-
static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;
|
|
45
|
-
static ngAcceptInputType_userData: NgtObservableInput<{
|
|
46
|
-
[key: string]: any;
|
|
47
|
-
}>;
|
|
48
|
-
static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;
|
|
49
|
-
static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;
|
|
50
|
-
static ngAcceptInputType_onBeforeRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
51
|
-
static ngAcceptInputType_onAfterRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
52
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtOrthographicCamera, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtOrthographicCamera, "ngt-orthographic-camera", never, { "zoom": "zoom"; "view": "view"; "left": "left"; "right": "right"; "top": "top"; "bottom": "bottom"; "near": "near"; "far": "far"; "matrixWorldInverse": "matrixWorldInverse"; "projectionMatrix": "projectionMatrix"; "projectionMatrixInverse": "projectionMatrixInverse"; "name": "name"; "position": "position"; "rotation": "rotation"; "quaternion": "quaternion"; "scale": "scale"; "modelViewMatrix": "modelViewMatrix"; "normalMatrix": "normalMatrix"; "matrix": "matrix"; "matrixWorld": "matrixWorld"; "matrixAutoUpdate": "matrixAutoUpdate"; "matrixWorldAutoUpdate": "matrixWorldAutoUpdate"; "matrixWorldNeedsUpdate": "matrixWorldNeedsUpdate"; "layers": "layers"; "visible": "visible"; "castShadow": "castShadow"; "receiveShadow": "receiveShadow"; "frustumCulled": "frustumCulled"; "renderOrder": "renderOrder"; "animations": "animations"; "userData": "userData"; "customDepthMaterial": "customDepthMaterial"; "customDistanceMaterial": "customDistanceMaterial"; "onBeforeRender": "onBeforeRender"; "onAfterRender": "onAfterRender"; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtInstance; inputs: { "ref": "ref"; "attach": "attach"; "skipWrapper": "skipWrapper"; "skipInit": "skipInit"; "noAttach": "noAttach"; "beforeRender": "beforeRender"; "priority": "priority"; "updateCallback": "updateCallback"; "readyCallback": "readyCallback"; }; outputs: { "click": "click"; "contextmenu": "contextmenu"; "dblclick": "dblclick"; "pointerup": "pointerup"; "pointerdown": "pointerdown"; "pointerover": "pointerover"; "pointerout": "pointerout"; "pointerenter": "pointerenter"; "pointerleave": "pointerleave"; "pointermove": "pointermove"; "pointermissed": "pointermissed"; "pointercancel": "pointercancel"; "wheel": "wheel"; }; }]>;
|
|
54
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import { NgtMatrix4, NgtVector3, NgtEuler, NgtQuaternion, NgtLayers, NgtObservableInput } from 'angular-three';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "angular-three";
|
|
5
|
-
export declare class NgtPerspectiveCamera extends THREE.PerspectiveCamera {
|
|
6
|
-
constructor();
|
|
7
|
-
static ngAcceptInputType_zoom: NgtObservableInput<number>;
|
|
8
|
-
static ngAcceptInputType_fov: NgtObservableInput<number>;
|
|
9
|
-
static ngAcceptInputType_aspect: NgtObservableInput<number>;
|
|
10
|
-
static ngAcceptInputType_near: NgtObservableInput<number>;
|
|
11
|
-
static ngAcceptInputType_far: NgtObservableInput<number>;
|
|
12
|
-
static ngAcceptInputType_focus: NgtObservableInput<number>;
|
|
13
|
-
static ngAcceptInputType_view: NgtObservableInput<null | {
|
|
14
|
-
enabled: boolean;
|
|
15
|
-
fullWidth: number;
|
|
16
|
-
fullHeight: number;
|
|
17
|
-
offsetX: number;
|
|
18
|
-
offsetY: number;
|
|
19
|
-
width: number;
|
|
20
|
-
height: number;
|
|
21
|
-
}>;
|
|
22
|
-
static ngAcceptInputType_filmGauge: NgtObservableInput<number>;
|
|
23
|
-
static ngAcceptInputType_filmOffset: NgtObservableInput<number>;
|
|
24
|
-
static ngAcceptInputType_matrixWorldInverse: NgtObservableInput<NgtMatrix4>;
|
|
25
|
-
static ngAcceptInputType_projectionMatrix: NgtObservableInput<NgtMatrix4>;
|
|
26
|
-
static ngAcceptInputType_projectionMatrixInverse: NgtObservableInput<NgtMatrix4>;
|
|
27
|
-
static ngAcceptInputType_name: NgtObservableInput<string>;
|
|
28
|
-
static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;
|
|
29
|
-
static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;
|
|
30
|
-
static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;
|
|
31
|
-
static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;
|
|
32
|
-
static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;
|
|
33
|
-
static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;
|
|
34
|
-
static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;
|
|
35
|
-
static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;
|
|
36
|
-
static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;
|
|
37
|
-
static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;
|
|
38
|
-
static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;
|
|
39
|
-
static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;
|
|
40
|
-
static ngAcceptInputType_visible: NgtObservableInput<boolean>;
|
|
41
|
-
static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;
|
|
42
|
-
static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;
|
|
43
|
-
static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;
|
|
44
|
-
static ngAcceptInputType_renderOrder: NgtObservableInput<number>;
|
|
45
|
-
static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;
|
|
46
|
-
static ngAcceptInputType_userData: NgtObservableInput<{
|
|
47
|
-
[key: string]: any;
|
|
48
|
-
}>;
|
|
49
|
-
static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;
|
|
50
|
-
static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;
|
|
51
|
-
static ngAcceptInputType_onBeforeRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
52
|
-
static ngAcceptInputType_onAfterRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
53
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtPerspectiveCamera, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtPerspectiveCamera, "ngt-perspective-camera", never, { "zoom": "zoom"; "fov": "fov"; "aspect": "aspect"; "near": "near"; "far": "far"; "focus": "focus"; "view": "view"; "filmGauge": "filmGauge"; "filmOffset": "filmOffset"; "matrixWorldInverse": "matrixWorldInverse"; "projectionMatrix": "projectionMatrix"; "projectionMatrixInverse": "projectionMatrixInverse"; "name": "name"; "position": "position"; "rotation": "rotation"; "quaternion": "quaternion"; "scale": "scale"; "modelViewMatrix": "modelViewMatrix"; "normalMatrix": "normalMatrix"; "matrix": "matrix"; "matrixWorld": "matrixWorld"; "matrixAutoUpdate": "matrixAutoUpdate"; "matrixWorldAutoUpdate": "matrixWorldAutoUpdate"; "matrixWorldNeedsUpdate": "matrixWorldNeedsUpdate"; "layers": "layers"; "visible": "visible"; "castShadow": "castShadow"; "receiveShadow": "receiveShadow"; "frustumCulled": "frustumCulled"; "renderOrder": "renderOrder"; "animations": "animations"; "userData": "userData"; "customDepthMaterial": "customDepthMaterial"; "customDistanceMaterial": "customDistanceMaterial"; "onBeforeRender": "onBeforeRender"; "onAfterRender": "onAfterRender"; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtInstance; inputs: { "ref": "ref"; "attach": "attach"; "skipWrapper": "skipWrapper"; "skipInit": "skipInit"; "noAttach": "noAttach"; "beforeRender": "beforeRender"; "priority": "priority"; "updateCallback": "updateCallback"; "readyCallback": "readyCallback"; }; outputs: { "click": "click"; "contextmenu": "contextmenu"; "dblclick": "dblclick"; "pointerup": "pointerup"; "pointerdown": "pointerdown"; "pointerover": "pointerover"; "pointerout": "pointerout"; "pointerenter": "pointerenter"; "pointerleave": "pointerleave"; "pointermove": "pointermove"; "pointermissed": "pointermissed"; "pointercancel": "pointercancel"; "wheel": "wheel"; }; }]>;
|
|
55
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import { NgtMatrix4, NgtVector3, NgtEuler, NgtQuaternion, NgtLayers, NgtObservableInput } from 'angular-three';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "angular-three";
|
|
5
|
-
export declare class NgtStereoCamera extends THREE.StereoCamera {
|
|
6
|
-
constructor();
|
|
7
|
-
static ngAcceptInputType_aspect: NgtObservableInput<number>;
|
|
8
|
-
static ngAcceptInputType_eyeSep: NgtObservableInput<number>;
|
|
9
|
-
static ngAcceptInputType_cameraL: NgtObservableInput<THREE.PerspectiveCamera>;
|
|
10
|
-
static ngAcceptInputType_cameraR: NgtObservableInput<THREE.PerspectiveCamera>;
|
|
11
|
-
static ngAcceptInputType_matrixWorldInverse: NgtObservableInput<NgtMatrix4>;
|
|
12
|
-
static ngAcceptInputType_projectionMatrix: NgtObservableInput<NgtMatrix4>;
|
|
13
|
-
static ngAcceptInputType_projectionMatrixInverse: NgtObservableInput<NgtMatrix4>;
|
|
14
|
-
static ngAcceptInputType_name: NgtObservableInput<string>;
|
|
15
|
-
static ngAcceptInputType_position: NgtObservableInput<NgtVector3>;
|
|
16
|
-
static ngAcceptInputType_rotation: NgtObservableInput<NgtEuler>;
|
|
17
|
-
static ngAcceptInputType_quaternion: NgtObservableInput<NgtQuaternion>;
|
|
18
|
-
static ngAcceptInputType_scale: NgtObservableInput<NgtVector3>;
|
|
19
|
-
static ngAcceptInputType_modelViewMatrix: NgtObservableInput<NgtMatrix4>;
|
|
20
|
-
static ngAcceptInputType_normalMatrix: NgtObservableInput<THREE.Matrix3>;
|
|
21
|
-
static ngAcceptInputType_matrix: NgtObservableInput<NgtMatrix4>;
|
|
22
|
-
static ngAcceptInputType_matrixWorld: NgtObservableInput<NgtMatrix4>;
|
|
23
|
-
static ngAcceptInputType_matrixAutoUpdate: NgtObservableInput<boolean>;
|
|
24
|
-
static ngAcceptInputType_matrixWorldAutoUpdate: NgtObservableInput<boolean>;
|
|
25
|
-
static ngAcceptInputType_matrixWorldNeedsUpdate: NgtObservableInput<boolean>;
|
|
26
|
-
static ngAcceptInputType_layers: NgtObservableInput<NgtLayers>;
|
|
27
|
-
static ngAcceptInputType_visible: NgtObservableInput<boolean>;
|
|
28
|
-
static ngAcceptInputType_castShadow: NgtObservableInput<boolean>;
|
|
29
|
-
static ngAcceptInputType_receiveShadow: NgtObservableInput<boolean>;
|
|
30
|
-
static ngAcceptInputType_frustumCulled: NgtObservableInput<boolean>;
|
|
31
|
-
static ngAcceptInputType_renderOrder: NgtObservableInput<number>;
|
|
32
|
-
static ngAcceptInputType_animations: NgtObservableInput<THREE.AnimationClip[]>;
|
|
33
|
-
static ngAcceptInputType_userData: NgtObservableInput<{
|
|
34
|
-
[key: string]: any;
|
|
35
|
-
}>;
|
|
36
|
-
static ngAcceptInputType_customDepthMaterial: NgtObservableInput<THREE.Material>;
|
|
37
|
-
static ngAcceptInputType_customDistanceMaterial: NgtObservableInput<THREE.Material>;
|
|
38
|
-
static ngAcceptInputType_onBeforeRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
39
|
-
static ngAcceptInputType_onAfterRender: NgtObservableInput<(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group) => void>;
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtStereoCamera, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtStereoCamera, "ngt-stereo-camera", never, { "aspect": "aspect"; "eyeSep": "eyeSep"; "cameraL": "cameraL"; "cameraR": "cameraR"; "matrixWorldInverse": "matrixWorldInverse"; "projectionMatrix": "projectionMatrix"; "projectionMatrixInverse": "projectionMatrixInverse"; "name": "name"; "position": "position"; "rotation": "rotation"; "quaternion": "quaternion"; "scale": "scale"; "modelViewMatrix": "modelViewMatrix"; "normalMatrix": "normalMatrix"; "matrix": "matrix"; "matrixWorld": "matrixWorld"; "matrixAutoUpdate": "matrixAutoUpdate"; "matrixWorldAutoUpdate": "matrixWorldAutoUpdate"; "matrixWorldNeedsUpdate": "matrixWorldNeedsUpdate"; "layers": "layers"; "visible": "visible"; "castShadow": "castShadow"; "receiveShadow": "receiveShadow"; "frustumCulled": "frustumCulled"; "renderOrder": "renderOrder"; "animations": "animations"; "userData": "userData"; "customDepthMaterial": "customDepthMaterial"; "customDistanceMaterial": "customDistanceMaterial"; "onBeforeRender": "onBeforeRender"; "onAfterRender": "onAfterRender"; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtInstance; inputs: { "ref": "ref"; "attach": "attach"; "skipWrapper": "skipWrapper"; "skipInit": "skipInit"; "noAttach": "noAttach"; "beforeRender": "beforeRender"; "priority": "priority"; "updateCallback": "updateCallback"; "readyCallback": "readyCallback"; }; outputs: { "click": "click"; "contextmenu": "contextmenu"; "dblclick": "dblclick"; "pointerup": "pointerup"; "pointerdown": "pointerdown"; "pointerover": "pointerover"; "pointerout": "pointerout"; "pointerenter": "pointerenter"; "pointerleave": "pointerleave"; "pointermove": "pointermove"; "pointermissed": "pointermissed"; "pointercancel": "pointercancel"; "wheel": "wheel"; }; }]>;
|
|
42
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './index';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ndWxhci10aHJlZS1hdHRyaWJ1dGVzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYW5ndWxhci10aHJlZS9hdHRyaWJ1dGVzL3NyYy9hbmd1bGFyLXRocmVlLWF0dHJpYnV0ZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
export * from './lib/buffer-attribute/buffer-attribute';
|
|
3
|
-
export * from './lib/instanced-buffer-attribute/instanced-buffer-attribute';
|
|
4
|
-
export * from './lib/interleaved-buffer-attribute/interleaved-buffer-attribute';
|
|
5
|
-
export * from './lib/float16-buffer-attribute/float16-buffer-attribute';
|
|
6
|
-
export * from './lib/float32-buffer-attribute/float32-buffer-attribute';
|
|
7
|
-
export * from './lib/float64-buffer-attribute/float64-buffer-attribute';
|
|
8
|
-
export * from './lib/int8-buffer-attribute/int8-buffer-attribute';
|
|
9
|
-
export * from './lib/int16-buffer-attribute/int16-buffer-attribute';
|
|
10
|
-
export * from './lib/int32-buffer-attribute/int32-buffer-attribute';
|
|
11
|
-
export * from './lib/uint8-buffer-attribute/uint8-buffer-attribute';
|
|
12
|
-
export * from './lib/uint16-buffer-attribute/uint16-buffer-attribute';
|
|
13
|
-
export * from './lib/uint32-buffer-attribute/uint32-buffer-attribute';
|
|
14
|
-
export * from './lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute';
|
|
15
|
-
export * from './lib/color-attribute/color-attribute';
|
|
16
|
-
export * from './lib/fog-attribute/fog-attribute';
|
|
17
|
-
export * from './lib/fog-exp2-attribute/fog-exp2-attribute';
|
|
18
|
-
export * from './lib/vector2-attribute/vector2-attribute';
|
|
19
|
-
export * from './lib/vector3-attribute/vector3-attribute';
|
|
20
|
-
export * from './lib/vector4-attribute/vector4-attribute';
|
|
21
|
-
export * from './lib/matrix3-attribute/matrix3-attribute';
|
|
22
|
-
export * from './lib/matrix4-attribute/matrix4-attribute';
|
|
23
|
-
export * from './lib/value-attribute/value-attribute';
|
|
24
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9hbmd1bGFyLXRocmVlL2F0dHJpYnV0ZXMvc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGtDQUFrQztBQUNsQyxjQUFjLHlDQUF5QyxDQUFDO0FBQ3hELGNBQWMsNkRBQTZELENBQUM7QUFDNUUsY0FBYyxpRUFBaUUsQ0FBQztBQUNoRixjQUFjLHlEQUF5RCxDQUFDO0FBQ3hFLGNBQWMseURBQXlELENBQUM7QUFDeEUsY0FBYyx5REFBeUQsQ0FBQztBQUN4RSxjQUFjLG1EQUFtRCxDQUFDO0FBQ2xFLGNBQWMscURBQXFELENBQUM7QUFDcEUsY0FBYyxxREFBcUQsQ0FBQztBQUNwRSxjQUFjLHFEQUFxRCxDQUFDO0FBQ3BFLGNBQWMsdURBQXVELENBQUM7QUFDdEUsY0FBYyx1REFBdUQsQ0FBQztBQUN0RSxjQUFjLHFFQUFxRSxDQUFDO0FBQ3BGLGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLDZDQUE2QyxDQUFDO0FBQzVELGNBQWMsMkNBQTJDLENBQUM7QUFDMUQsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLDJDQUEyQyxDQUFDO0FBQzFELGNBQWMsMkNBQTJDLENBQUM7QUFDMUQsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLHVDQUF1QyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLy8gR0VORVJBVEVEIC0gQW5ndWxhclRocmVlIHYxLjAuMFxuZXhwb3J0ICogZnJvbSAnLi9saWIvYnVmZmVyLWF0dHJpYnV0ZS9idWZmZXItYXR0cmlidXRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2luc3RhbmNlZC1idWZmZXItYXR0cmlidXRlL2luc3RhbmNlZC1idWZmZXItYXR0cmlidXRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ludGVybGVhdmVkLWJ1ZmZlci1hdHRyaWJ1dGUvaW50ZXJsZWF2ZWQtYnVmZmVyLWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9mbG9hdDE2LWJ1ZmZlci1hdHRyaWJ1dGUvZmxvYXQxNi1idWZmZXItYXR0cmlidXRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Zsb2F0MzItYnVmZmVyLWF0dHJpYnV0ZS9mbG9hdDMyLWJ1ZmZlci1hdHRyaWJ1dGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZmxvYXQ2NC1idWZmZXItYXR0cmlidXRlL2Zsb2F0NjQtYnVmZmVyLWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnQ4LWJ1ZmZlci1hdHRyaWJ1dGUvaW50OC1idWZmZXItYXR0cmlidXRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ludDE2LWJ1ZmZlci1hdHRyaWJ1dGUvaW50MTYtYnVmZmVyLWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnQzMi1idWZmZXItYXR0cmlidXRlL2ludDMyLWJ1ZmZlci1hdHRyaWJ1dGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdWludDgtYnVmZmVyLWF0dHJpYnV0ZS91aW50OC1idWZmZXItYXR0cmlidXRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3VpbnQxNi1idWZmZXItYXR0cmlidXRlL3VpbnQxNi1idWZmZXItYXR0cmlidXRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3VpbnQzMi1idWZmZXItYXR0cmlidXRlL3VpbnQzMi1idWZmZXItYXR0cmlidXRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3VpbnQ4LWNsYW1wZWQtYnVmZmVyLWF0dHJpYnV0ZS91aW50OC1jbGFtcGVkLWJ1ZmZlci1hdHRyaWJ1dGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29sb3ItYXR0cmlidXRlL2NvbG9yLWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9mb2ctYXR0cmlidXRlL2ZvZy1hdHRyaWJ1dGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZm9nLWV4cDItYXR0cmlidXRlL2ZvZy1leHAyLWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi92ZWN0b3IyLWF0dHJpYnV0ZS92ZWN0b3IyLWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi92ZWN0b3IzLWF0dHJpYnV0ZS92ZWN0b3IzLWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi92ZWN0b3I0LWF0dHJpYnV0ZS92ZWN0b3I0LWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9tYXRyaXgzLWF0dHJpYnV0ZS9tYXRyaXgzLWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9tYXRyaXg0LWF0dHJpYnV0ZS9tYXRyaXg0LWF0dHJpYnV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi92YWx1ZS1hdHRyaWJ1dGUvdmFsdWUtYXR0cmlidXRlJztcbiJdfQ==
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
import { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as THREE from 'three';
|
|
5
|
-
import { NGT_INSTANCE_INPUTS } from '../common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "angular-three";
|
|
8
|
-
export 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, 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 });
|
|
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 }],
|
|
23
|
-
providers: [provideInstanceRef(NgtBufferAttribute)],
|
|
24
|
-
}]
|
|
25
|
-
}], ctorParameters: function () { return []; } });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVmZmVyLWF0dHJpYnV0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2FuZ3VsYXItdGhyZWUvYXR0cmlidXRlcy9zcmMvbGliL2J1ZmZlci1hdHRyaWJ1dGUvYnVmZmVyLWF0dHJpYnV0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxrQ0FBa0M7QUFDbEMsT0FBTyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxLQUFLLEtBQUssTUFBTSxPQUFPLENBQUM7QUFDL0IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sV0FBVyxDQUFDOzs7QUFTaEQsTUFBTSxPQUFPLGtCQUFtQixTQUFRLEtBQUssQ0FBQyxlQUFlO0lBQ3pEO1FBQ0ksS0FBSyxDQUFDLEdBQUcsQ0FBQyxVQUFVLENBQStCLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUFDLElBQUksQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ3BGLE9BQU8sT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3pCLENBQUM7OytHQUpRLGtCQUFrQjttR0FBbEIsa0JBQWtCLG1FQUZoQixDQUFDLGtCQUFrQixDQUFDLGtCQUFrQixDQUFDLENBQUMsMFZBRnpDLDJCQUEyQjsyRkFJNUIsa0JBQWtCO2tCQVA5QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxzQkFBc0I7b0JBQ2hDLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsMkJBQTJCO29CQUNyQyxjQUFjLEVBQUUsQ0FBQyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsTUFBTSxFQUFFLG1CQUFtQixFQUFFLENBQUM7b0JBQ3pFLFNBQVMsRUFBRSxDQUFDLGtCQUFrQixvQkFBb0IsQ0FBQztpQkFDdEQiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBHRU5FUkFURUQgLSBBbmd1bGFyVGhyZWUgdjEuMC4wXG5pbXBvcnQgeyBpbmplY3RBcmdzLCBOZ3RJbnN0YW5jZSwgcHJvdmlkZUluc3RhbmNlUmVmLCBwcm94aWZ5IH0gZnJvbSAnYW5ndWxhci10aHJlZSc7XG5pbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCAqIGFzIFRIUkVFIGZyb20gJ3RocmVlJztcbmltcG9ydCB7IE5HVF9JTlNUQU5DRV9JTlBVVFMgfSBmcm9tICcuLi9jb21tb24nO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ25ndC1idWZmZXItYXR0cmlidXRlJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIHRlbXBsYXRlOiAnPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PicsXG4gICAgaG9zdERpcmVjdGl2ZXM6IFt7IGRpcmVjdGl2ZTogTmd0SW5zdGFuY2UsIGlucHV0czogTkdUX0lOU1RBTkNFX0lOUFVUUyB9XSxcbiAgICBwcm92aWRlcnM6IFtwcm92aWRlSW5zdGFuY2VSZWYoTmd0QnVmZmVyQXR0cmlidXRlKV0sXG59KVxuZXhwb3J0IGNsYXNzIE5ndEJ1ZmZlckF0dHJpYnV0ZSBleHRlbmRzIFRIUkVFLkJ1ZmZlckF0dHJpYnV0ZSB7XG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIHN1cGVyKC4uLihpbmplY3RBcmdzPHR5cGVvZiBUSFJFRS5CdWZmZXJBdHRyaWJ1dGU+KHsgb3B0aW9uYWw6IHRydWUgfSkgfHwgW1tdLCAwXSkpO1xuICAgICAgICByZXR1cm4gcHJveGlmeSh0aGlzKTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
import { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as THREE from 'three';
|
|
5
|
-
import { NGT_INSTANCE_INPUTS } from '../common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "angular-three";
|
|
8
|
-
export class NgtColorAttribute extends THREE.Color {
|
|
9
|
-
constructor() {
|
|
10
|
-
super(...(injectArgs({ optional: true }) || []));
|
|
11
|
-
return proxify(this);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
NgtColorAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtColorAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
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, 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 });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtColorAttribute, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngt-color',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: '<ng-content></ng-content>',
|
|
22
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
23
|
-
providers: [provideInstanceRef(NgtColorAttribute)],
|
|
24
|
-
}]
|
|
25
|
-
}], ctorParameters: function () { return []; } });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3ItYXR0cmlidXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYW5ndWxhci10aHJlZS9hdHRyaWJ1dGVzL3NyYy9saWIvY29sb3ItYXR0cmlidXRlL2NvbG9yLWF0dHJpYnV0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxrQ0FBa0M7QUFDbEMsT0FBTyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxLQUFLLEtBQUssTUFBTSxPQUFPLENBQUM7QUFDL0IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sV0FBVyxDQUFDOzs7QUFTaEQsTUFBTSxPQUFPLGlCQUFrQixTQUFRLEtBQUssQ0FBQyxLQUFLO0lBQzlDO1FBQ0ksS0FBSyxDQUFDLEdBQUcsQ0FBQyxVQUFVLENBQXFCLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsQ0FBQztRQUNyRSxPQUFPLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN6QixDQUFDOzs4R0FKUSxpQkFBaUI7a0dBQWpCLGlCQUFpQix3REFGZixDQUFDLGtCQUFrQixDQUFDLGlCQUFpQixDQUFDLENBQUMsMFZBRnhDLDJCQUEyQjsyRkFJNUIsaUJBQWlCO2tCQVA3QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxXQUFXO29CQUNyQixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsUUFBUSxFQUFFLDJCQUEyQjtvQkFDckMsY0FBYyxFQUFFLENBQUMsRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxtQkFBbUIsRUFBRSxDQUFDO29CQUN6RSxTQUFTLEVBQUUsQ0FBQyxrQkFBa0IsbUJBQW1CLENBQUM7aUJBQ3JEIiwic291cmNlc0NvbnRlbnQiOlsiLy8gR0VORVJBVEVEIC0gQW5ndWxhclRocmVlIHYxLjAuMFxuaW1wb3J0IHsgaW5qZWN0QXJncywgTmd0SW5zdGFuY2UsIHByb3ZpZGVJbnN0YW5jZVJlZiwgcHJveGlmeSB9IGZyb20gJ2FuZ3VsYXItdGhyZWUnO1xuaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgKiBhcyBUSFJFRSBmcm9tICd0aHJlZSc7XG5pbXBvcnQgeyBOR1RfSU5TVEFOQ0VfSU5QVVRTIH0gZnJvbSAnLi4vY29tbW9uJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduZ3QtY29sb3InLFxuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgdGVtcGxhdGU6ICc8bmctY29udGVudD48L25nLWNvbnRlbnQ+JyxcbiAgICBob3N0RGlyZWN0aXZlczogW3sgZGlyZWN0aXZlOiBOZ3RJbnN0YW5jZSwgaW5wdXRzOiBOR1RfSU5TVEFOQ0VfSU5QVVRTIH1dLFxuICAgIHByb3ZpZGVyczogW3Byb3ZpZGVJbnN0YW5jZVJlZihOZ3RDb2xvckF0dHJpYnV0ZSldLFxufSlcbmV4cG9ydCBjbGFzcyBOZ3RDb2xvckF0dHJpYnV0ZSBleHRlbmRzIFRIUkVFLkNvbG9yIHtcbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgc3VwZXIoLi4uKGluamVjdEFyZ3M8dHlwZW9mIFRIUkVFLkNvbG9yPih7IG9wdGlvbmFsOiB0cnVlIH0pIHx8IFtdKSk7XG4gICAgICAgIHJldHVybiBwcm94aWZ5KHRoaXMpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
export const NGT_INSTANCE_INPUTS = [
|
|
3
|
-
'ref',
|
|
4
|
-
'attach',
|
|
5
|
-
'skipWrapper',
|
|
6
|
-
'skipInit',
|
|
7
|
-
'noAttach',
|
|
8
|
-
'beforeRender',
|
|
9
|
-
'priority',
|
|
10
|
-
'updateCallback',
|
|
11
|
-
'readyCallback',
|
|
12
|
-
];
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYW5ndWxhci10aHJlZS9hdHRyaWJ1dGVzL3NyYy9saWIvY29tbW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGtDQUFrQztBQUNsQyxNQUFNLENBQUMsTUFBTSxtQkFBbUIsR0FBRztJQUMvQixLQUFLO0lBQ0wsUUFBUTtJQUNSLGFBQWE7SUFDYixVQUFVO0lBQ1YsVUFBVTtJQUNWLGNBQWM7SUFDZCxVQUFVO0lBQ1YsZ0JBQWdCO0lBQ2hCLGVBQWU7Q0FDbEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8vIEdFTkVSQVRFRCAtIEFuZ3VsYXJUaHJlZSB2MS4wLjBcbmV4cG9ydCBjb25zdCBOR1RfSU5TVEFOQ0VfSU5QVVRTID0gW1xuICAgICdyZWYnLFxuICAgICdhdHRhY2gnLFxuICAgICdza2lwV3JhcHBlcicsXG4gICAgJ3NraXBJbml0JyxcbiAgICAnbm9BdHRhY2gnLFxuICAgICdiZWZvcmVSZW5kZXInLFxuICAgICdwcmlvcml0eScsXG4gICAgJ3VwZGF0ZUNhbGxiYWNrJyxcbiAgICAncmVhZHlDYWxsYmFjaycsXG5dO1xuIl19
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
import { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as THREE from 'three';
|
|
5
|
-
import { NGT_INSTANCE_INPUTS } from '../common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "angular-three";
|
|
8
|
-
export class NgtFloat16BufferAttribute extends THREE.Float16BufferAttribute {
|
|
9
|
-
constructor() {
|
|
10
|
-
super(...(injectArgs({ optional: true }) || [[], 0]));
|
|
11
|
-
return proxify(this);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
NgtFloat16BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat16BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
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, 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 });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat16BufferAttribute, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngt-float16-buffer-attribute',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: '<ng-content></ng-content>',
|
|
22
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
23
|
-
providers: [provideInstanceRef(NgtFloat16BufferAttribute)],
|
|
24
|
-
}]
|
|
25
|
-
}], ctorParameters: function () { return []; } });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmxvYXQxNi1idWZmZXItYXR0cmlidXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYW5ndWxhci10aHJlZS9hdHRyaWJ1dGVzL3NyYy9saWIvZmxvYXQxNi1idWZmZXItYXR0cmlidXRlL2Zsb2F0MTYtYnVmZmVyLWF0dHJpYnV0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxrQ0FBa0M7QUFDbEMsT0FBTyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxLQUFLLEtBQUssTUFBTSxPQUFPLENBQUM7QUFDL0IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sV0FBVyxDQUFDOzs7QUFTaEQsTUFBTSxPQUFPLHlCQUEwQixTQUFRLEtBQUssQ0FBQyxzQkFBc0I7SUFDdkU7UUFDSSxLQUFLLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBc0MsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLENBQUMsSUFBSSxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDM0YsT0FBTyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDekIsQ0FBQzs7c0hBSlEseUJBQXlCOzBHQUF6Qix5QkFBeUIsMkVBRnZCLENBQUMsa0JBQWtCLENBQUMseUJBQXlCLENBQUMsQ0FBQywwVkFGaEQsMkJBQTJCOzJGQUk1Qix5QkFBeUI7a0JBUHJDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDhCQUE4QjtvQkFDeEMsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSwyQkFBMkI7b0JBQ3JDLGNBQWMsRUFBRSxDQUFDLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLEVBQUUsbUJBQW1CLEVBQUUsQ0FBQztvQkFDekUsU0FBUyxFQUFFLENBQUMsa0JBQWtCLDJCQUEyQixDQUFDO2lCQUM3RCIsInNvdXJjZXNDb250ZW50IjpbIi8vIEdFTkVSQVRFRCAtIEFuZ3VsYXJUaHJlZSB2MS4wLjBcbmltcG9ydCB7IGluamVjdEFyZ3MsIE5ndEluc3RhbmNlLCBwcm92aWRlSW5zdGFuY2VSZWYsIHByb3hpZnkgfSBmcm9tICdhbmd1bGFyLXRocmVlJztcbmltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0ICogYXMgVEhSRUUgZnJvbSAndGhyZWUnO1xuaW1wb3J0IHsgTkdUX0lOU1RBTkNFX0lOUFVUUyB9IGZyb20gJy4uL2NvbW1vbic7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmd0LWZsb2F0MTYtYnVmZmVyLWF0dHJpYnV0ZScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICB0ZW1wbGF0ZTogJzxuZy1jb250ZW50PjwvbmctY29udGVudD4nLFxuICAgIGhvc3REaXJlY3RpdmVzOiBbeyBkaXJlY3RpdmU6IE5ndEluc3RhbmNlLCBpbnB1dHM6IE5HVF9JTlNUQU5DRV9JTlBVVFMgfV0sXG4gICAgcHJvdmlkZXJzOiBbcHJvdmlkZUluc3RhbmNlUmVmKE5ndEZsb2F0MTZCdWZmZXJBdHRyaWJ1dGUpXSxcbn0pXG5leHBvcnQgY2xhc3MgTmd0RmxvYXQxNkJ1ZmZlckF0dHJpYnV0ZSBleHRlbmRzIFRIUkVFLkZsb2F0MTZCdWZmZXJBdHRyaWJ1dGUge1xuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBzdXBlciguLi4oaW5qZWN0QXJnczx0eXBlb2YgVEhSRUUuRmxvYXQxNkJ1ZmZlckF0dHJpYnV0ZT4oeyBvcHRpb25hbDogdHJ1ZSB9KSB8fCBbW10sIDBdKSk7XG4gICAgICAgIHJldHVybiBwcm94aWZ5KHRoaXMpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
import { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as THREE from 'three';
|
|
5
|
-
import { NGT_INSTANCE_INPUTS } from '../common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "angular-three";
|
|
8
|
-
export class NgtFloat32BufferAttribute extends THREE.Float32BufferAttribute {
|
|
9
|
-
constructor() {
|
|
10
|
-
super(...(injectArgs({ optional: true }) || [[], 0]));
|
|
11
|
-
return proxify(this);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
NgtFloat32BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat32BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
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, 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 });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat32BufferAttribute, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngt-float32-buffer-attribute',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: '<ng-content></ng-content>',
|
|
22
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
23
|
-
providers: [provideInstanceRef(NgtFloat32BufferAttribute)],
|
|
24
|
-
}]
|
|
25
|
-
}], ctorParameters: function () { return []; } });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmxvYXQzMi1idWZmZXItYXR0cmlidXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYW5ndWxhci10aHJlZS9hdHRyaWJ1dGVzL3NyYy9saWIvZmxvYXQzMi1idWZmZXItYXR0cmlidXRlL2Zsb2F0MzItYnVmZmVyLWF0dHJpYnV0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxrQ0FBa0M7QUFDbEMsT0FBTyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxLQUFLLEtBQUssTUFBTSxPQUFPLENBQUM7QUFDL0IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sV0FBVyxDQUFDOzs7QUFTaEQsTUFBTSxPQUFPLHlCQUEwQixTQUFRLEtBQUssQ0FBQyxzQkFBc0I7SUFDdkU7UUFDSSxLQUFLLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBc0MsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLENBQUMsSUFBSSxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDM0YsT0FBTyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDekIsQ0FBQzs7c0hBSlEseUJBQXlCOzBHQUF6Qix5QkFBeUIsMkVBRnZCLENBQUMsa0JBQWtCLENBQUMseUJBQXlCLENBQUMsQ0FBQywwVkFGaEQsMkJBQTJCOzJGQUk1Qix5QkFBeUI7a0JBUHJDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDhCQUE4QjtvQkFDeEMsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSwyQkFBMkI7b0JBQ3JDLGNBQWMsRUFBRSxDQUFDLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLEVBQUUsbUJBQW1CLEVBQUUsQ0FBQztvQkFDekUsU0FBUyxFQUFFLENBQUMsa0JBQWtCLDJCQUEyQixDQUFDO2lCQUM3RCIsInNvdXJjZXNDb250ZW50IjpbIi8vIEdFTkVSQVRFRCAtIEFuZ3VsYXJUaHJlZSB2MS4wLjBcbmltcG9ydCB7IGluamVjdEFyZ3MsIE5ndEluc3RhbmNlLCBwcm92aWRlSW5zdGFuY2VSZWYsIHByb3hpZnkgfSBmcm9tICdhbmd1bGFyLXRocmVlJztcbmltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0ICogYXMgVEhSRUUgZnJvbSAndGhyZWUnO1xuaW1wb3J0IHsgTkdUX0lOU1RBTkNFX0lOUFVUUyB9IGZyb20gJy4uL2NvbW1vbic7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmd0LWZsb2F0MzItYnVmZmVyLWF0dHJpYnV0ZScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICB0ZW1wbGF0ZTogJzxuZy1jb250ZW50PjwvbmctY29udGVudD4nLFxuICAgIGhvc3REaXJlY3RpdmVzOiBbeyBkaXJlY3RpdmU6IE5ndEluc3RhbmNlLCBpbnB1dHM6IE5HVF9JTlNUQU5DRV9JTlBVVFMgfV0sXG4gICAgcHJvdmlkZXJzOiBbcHJvdmlkZUluc3RhbmNlUmVmKE5ndEZsb2F0MzJCdWZmZXJBdHRyaWJ1dGUpXSxcbn0pXG5leHBvcnQgY2xhc3MgTmd0RmxvYXQzMkJ1ZmZlckF0dHJpYnV0ZSBleHRlbmRzIFRIUkVFLkZsb2F0MzJCdWZmZXJBdHRyaWJ1dGUge1xuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBzdXBlciguLi4oaW5qZWN0QXJnczx0eXBlb2YgVEhSRUUuRmxvYXQzMkJ1ZmZlckF0dHJpYnV0ZT4oeyBvcHRpb25hbDogdHJ1ZSB9KSB8fCBbW10sIDBdKSk7XG4gICAgICAgIHJldHVybiBwcm94aWZ5KHRoaXMpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
import { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as THREE from 'three';
|
|
5
|
-
import { NGT_INSTANCE_INPUTS } from '../common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "angular-three";
|
|
8
|
-
export class NgtFloat64BufferAttribute extends THREE.Float64BufferAttribute {
|
|
9
|
-
constructor() {
|
|
10
|
-
super(...(injectArgs({ optional: true }) || [[], 0]));
|
|
11
|
-
return proxify(this);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
NgtFloat64BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat64BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
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, 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 });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat64BufferAttribute, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngt-float64-buffer-attribute',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: '<ng-content></ng-content>',
|
|
22
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
23
|
-
providers: [provideInstanceRef(NgtFloat64BufferAttribute)],
|
|
24
|
-
}]
|
|
25
|
-
}], ctorParameters: function () { return []; } });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmxvYXQ2NC1idWZmZXItYXR0cmlidXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYW5ndWxhci10aHJlZS9hdHRyaWJ1dGVzL3NyYy9saWIvZmxvYXQ2NC1idWZmZXItYXR0cmlidXRlL2Zsb2F0NjQtYnVmZmVyLWF0dHJpYnV0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxrQ0FBa0M7QUFDbEMsT0FBTyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxLQUFLLEtBQUssTUFBTSxPQUFPLENBQUM7QUFDL0IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sV0FBVyxDQUFDOzs7QUFTaEQsTUFBTSxPQUFPLHlCQUEwQixTQUFRLEtBQUssQ0FBQyxzQkFBc0I7SUFDdkU7UUFDSSxLQUFLLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBc0MsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLENBQUMsSUFBSSxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDM0YsT0FBTyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDekIsQ0FBQzs7c0hBSlEseUJBQXlCOzBHQUF6Qix5QkFBeUIsMkVBRnZCLENBQUMsa0JBQWtCLENBQUMseUJBQXlCLENBQUMsQ0FBQywwVkFGaEQsMkJBQTJCOzJGQUk1Qix5QkFBeUI7a0JBUHJDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDhCQUE4QjtvQkFDeEMsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSwyQkFBMkI7b0JBQ3JDLGNBQWMsRUFBRSxDQUFDLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLEVBQUUsbUJBQW1CLEVBQUUsQ0FBQztvQkFDekUsU0FBUyxFQUFFLENBQUMsa0JBQWtCLDJCQUEyQixDQUFDO2lCQUM3RCIsInNvdXJjZXNDb250ZW50IjpbIi8vIEdFTkVSQVRFRCAtIEFuZ3VsYXJUaHJlZSB2MS4wLjBcbmltcG9ydCB7IGluamVjdEFyZ3MsIE5ndEluc3RhbmNlLCBwcm92aWRlSW5zdGFuY2VSZWYsIHByb3hpZnkgfSBmcm9tICdhbmd1bGFyLXRocmVlJztcbmltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0ICogYXMgVEhSRUUgZnJvbSAndGhyZWUnO1xuaW1wb3J0IHsgTkdUX0lOU1RBTkNFX0lOUFVUUyB9IGZyb20gJy4uL2NvbW1vbic7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmd0LWZsb2F0NjQtYnVmZmVyLWF0dHJpYnV0ZScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICB0ZW1wbGF0ZTogJzxuZy1jb250ZW50PjwvbmctY29udGVudD4nLFxuICAgIGhvc3REaXJlY3RpdmVzOiBbeyBkaXJlY3RpdmU6IE5ndEluc3RhbmNlLCBpbnB1dHM6IE5HVF9JTlNUQU5DRV9JTlBVVFMgfV0sXG4gICAgcHJvdmlkZXJzOiBbcHJvdmlkZUluc3RhbmNlUmVmKE5ndEZsb2F0NjRCdWZmZXJBdHRyaWJ1dGUpXSxcbn0pXG5leHBvcnQgY2xhc3MgTmd0RmxvYXQ2NEJ1ZmZlckF0dHJpYnV0ZSBleHRlbmRzIFRIUkVFLkZsb2F0NjRCdWZmZXJBdHRyaWJ1dGUge1xuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBzdXBlciguLi4oaW5qZWN0QXJnczx0eXBlb2YgVEhSRUUuRmxvYXQ2NEJ1ZmZlckF0dHJpYnV0ZT4oeyBvcHRpb25hbDogdHJ1ZSB9KSB8fCBbW10sIDBdKSk7XG4gICAgICAgIHJldHVybiBwcm94aWZ5KHRoaXMpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
import { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as THREE from 'three';
|
|
5
|
-
import { NGT_INSTANCE_INPUTS } from '../common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "angular-three";
|
|
8
|
-
export class NgtFogAttribute extends THREE.Fog {
|
|
9
|
-
constructor() {
|
|
10
|
-
super(...(injectArgs({ optional: true }) || ['white']));
|
|
11
|
-
return proxify(this);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
NgtFogAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFogAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
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, 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 });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFogAttribute, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngt-fog',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: '<ng-content></ng-content>',
|
|
22
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
23
|
-
providers: [provideInstanceRef(NgtFogAttribute)],
|
|
24
|
-
}]
|
|
25
|
-
}], ctorParameters: function () { return []; } });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9nLWF0dHJpYnV0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2FuZ3VsYXItdGhyZWUvYXR0cmlidXRlcy9zcmMvbGliL2ZvZy1hdHRyaWJ1dGUvZm9nLWF0dHJpYnV0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxrQ0FBa0M7QUFDbEMsT0FBTyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxLQUFLLEtBQUssTUFBTSxPQUFPLENBQUM7QUFDL0IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sV0FBVyxDQUFDOzs7QUFTaEQsTUFBTSxPQUFPLGVBQWdCLFNBQVEsS0FBSyxDQUFDLEdBQUc7SUFDMUM7UUFDSSxLQUFLLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBbUIsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUMxRSxPQUFPLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN6QixDQUFDOzs0R0FKUSxlQUFlO2dHQUFmLGVBQWUsc0RBRmIsQ0FBQyxrQkFBa0IsQ0FBQyxlQUFlLENBQUMsQ0FBQywwVkFGdEMsMkJBQTJCOzJGQUk1QixlQUFlO2tCQVAzQixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxTQUFTO29CQUNuQixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsUUFBUSxFQUFFLDJCQUEyQjtvQkFDckMsY0FBYyxFQUFFLENBQUMsRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxtQkFBbUIsRUFBRSxDQUFDO29CQUN6RSxTQUFTLEVBQUUsQ0FBQyxrQkFBa0IsaUJBQWlCLENBQUM7aUJBQ25EIiwic291cmNlc0NvbnRlbnQiOlsiLy8gR0VORVJBVEVEIC0gQW5ndWxhclRocmVlIHYxLjAuMFxuaW1wb3J0IHsgaW5qZWN0QXJncywgTmd0SW5zdGFuY2UsIHByb3ZpZGVJbnN0YW5jZVJlZiwgcHJveGlmeSB9IGZyb20gJ2FuZ3VsYXItdGhyZWUnO1xuaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgKiBhcyBUSFJFRSBmcm9tICd0aHJlZSc7XG5pbXBvcnQgeyBOR1RfSU5TVEFOQ0VfSU5QVVRTIH0gZnJvbSAnLi4vY29tbW9uJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduZ3QtZm9nJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIHRlbXBsYXRlOiAnPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PicsXG4gICAgaG9zdERpcmVjdGl2ZXM6IFt7IGRpcmVjdGl2ZTogTmd0SW5zdGFuY2UsIGlucHV0czogTkdUX0lOU1RBTkNFX0lOUFVUUyB9XSxcbiAgICBwcm92aWRlcnM6IFtwcm92aWRlSW5zdGFuY2VSZWYoTmd0Rm9nQXR0cmlidXRlKV0sXG59KVxuZXhwb3J0IGNsYXNzIE5ndEZvZ0F0dHJpYnV0ZSBleHRlbmRzIFRIUkVFLkZvZyB7XG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIHN1cGVyKC4uLihpbmplY3RBcmdzPHR5cGVvZiBUSFJFRS5Gb2c+KHsgb3B0aW9uYWw6IHRydWUgfSkgfHwgWyd3aGl0ZSddKSk7XG4gICAgICAgIHJldHVybiBwcm94aWZ5KHRoaXMpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
import { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as THREE from 'three';
|
|
5
|
-
import { NGT_INSTANCE_INPUTS } from '../common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "angular-three";
|
|
8
|
-
export class NgtFogExp2Attribute extends THREE.FogExp2 {
|
|
9
|
-
constructor() {
|
|
10
|
-
super(...(injectArgs({ optional: true }) || ['#fff']));
|
|
11
|
-
return proxify(this);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
NgtFogExp2Attribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFogExp2Attribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
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, 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 });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFogExp2Attribute, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngt-fog-exp2',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: '<ng-content></ng-content>',
|
|
22
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
23
|
-
providers: [provideInstanceRef(NgtFogExp2Attribute)],
|
|
24
|
-
}]
|
|
25
|
-
}], ctorParameters: function () { return []; } });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9nLWV4cDItYXR0cmlidXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYW5ndWxhci10aHJlZS9hdHRyaWJ1dGVzL3NyYy9saWIvZm9nLWV4cDItYXR0cmlidXRlL2ZvZy1leHAyLWF0dHJpYnV0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxrQ0FBa0M7QUFDbEMsT0FBTyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxLQUFLLEtBQUssTUFBTSxPQUFPLENBQUM7QUFDL0IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sV0FBVyxDQUFDOzs7QUFTaEQsTUFBTSxPQUFPLG1CQUFvQixTQUFRLEtBQUssQ0FBQyxPQUFPO0lBQ2xEO1FBQ0ksS0FBSyxDQUFDLEdBQUcsQ0FBQyxVQUFVLENBQXVCLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDN0UsT0FBTyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDekIsQ0FBQzs7Z0hBSlEsbUJBQW1CO29HQUFuQixtQkFBbUIsMkRBRmpCLENBQUMsa0JBQWtCLENBQUMsbUJBQW1CLENBQUMsQ0FBQywwVkFGMUMsMkJBQTJCOzJGQUk1QixtQkFBbUI7a0JBUC9CLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLGNBQWM7b0JBQ3hCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsMkJBQTJCO29CQUNyQyxjQUFjLEVBQUUsQ0FBQyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsTUFBTSxFQUFFLG1CQUFtQixFQUFFLENBQUM7b0JBQ3pFLFNBQVMsRUFBRSxDQUFDLGtCQUFrQixxQkFBcUIsQ0FBQztpQkFDdkQiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBHRU5FUkFURUQgLSBBbmd1bGFyVGhyZWUgdjEuMC4wXG5pbXBvcnQgeyBpbmplY3RBcmdzLCBOZ3RJbnN0YW5jZSwgcHJvdmlkZUluc3RhbmNlUmVmLCBwcm94aWZ5IH0gZnJvbSAnYW5ndWxhci10aHJlZSc7XG5pbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCAqIGFzIFRIUkVFIGZyb20gJ3RocmVlJztcbmltcG9ydCB7IE5HVF9JTlNUQU5DRV9JTlBVVFMgfSBmcm9tICcuLi9jb21tb24nO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ25ndC1mb2ctZXhwMicsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICB0ZW1wbGF0ZTogJzxuZy1jb250ZW50PjwvbmctY29udGVudD4nLFxuICAgIGhvc3REaXJlY3RpdmVzOiBbeyBkaXJlY3RpdmU6IE5ndEluc3RhbmNlLCBpbnB1dHM6IE5HVF9JTlNUQU5DRV9JTlBVVFMgfV0sXG4gICAgcHJvdmlkZXJzOiBbcHJvdmlkZUluc3RhbmNlUmVmKE5ndEZvZ0V4cDJBdHRyaWJ1dGUpXSxcbn0pXG5leHBvcnQgY2xhc3MgTmd0Rm9nRXhwMkF0dHJpYnV0ZSBleHRlbmRzIFRIUkVFLkZvZ0V4cDIge1xuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBzdXBlciguLi4oaW5qZWN0QXJnczx0eXBlb2YgVEhSRUUuRm9nRXhwMj4oeyBvcHRpb25hbDogdHJ1ZSB9KSB8fCBbJyNmZmYnXSkpO1xuICAgICAgICByZXR1cm4gcHJveGlmeSh0aGlzKTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// GENERATED - AngularThree v1.0.0
|
|
2
|
-
import { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';
|
|
3
|
-
import { Component } from '@angular/core';
|
|
4
|
-
import * as THREE from 'three';
|
|
5
|
-
import { NGT_INSTANCE_INPUTS } from '../common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "angular-three";
|
|
8
|
-
export class NgtInstancedBufferAttribute extends THREE.InstancedBufferAttribute {
|
|
9
|
-
constructor() {
|
|
10
|
-
super(...(injectArgs({ optional: true }) || [[], 0]));
|
|
11
|
-
return proxify(this);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
NgtInstancedBufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedBufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
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, 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 });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedBufferAttribute, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngt-instanced-buffer-attribute',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: '<ng-content></ng-content>',
|
|
22
|
-
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
|
|
23
|
-
providers: [provideInstanceRef(NgtInstancedBufferAttribute)],
|
|
24
|
-
}]
|
|
25
|
-
}], ctorParameters: function () { return []; } });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5zdGFuY2VkLWJ1ZmZlci1hdHRyaWJ1dGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9hbmd1bGFyLXRocmVlL2F0dHJpYnV0ZXMvc3JjL2xpYi9pbnN0YW5jZWQtYnVmZmVyLWF0dHJpYnV0ZS9pbnN0YW5jZWQtYnVmZmVyLWF0dHJpYnV0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxrQ0FBa0M7QUFDbEMsT0FBTyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxLQUFLLEtBQUssTUFBTSxPQUFPLENBQUM7QUFDL0IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sV0FBVyxDQUFDOzs7QUFTaEQsTUFBTSxPQUFPLDJCQUE0QixTQUFRLEtBQUssQ0FBQyx3QkFBd0I7SUFDM0U7UUFDSSxLQUFLLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBd0MsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLENBQUMsSUFBSSxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDN0YsT0FBTyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDekIsQ0FBQzs7d0hBSlEsMkJBQTJCOzRHQUEzQiwyQkFBMkIsNkVBRnpCLENBQUMsa0JBQWtCLENBQUMsMkJBQTJCLENBQUMsQ0FBQywwVkFGbEQsMkJBQTJCOzJGQUk1QiwyQkFBMkI7a0JBUHZDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLGdDQUFnQztvQkFDMUMsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSwyQkFBMkI7b0JBQ3JDLGNBQWMsRUFBRSxDQUFDLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLEVBQUUsbUJBQW1CLEVBQUUsQ0FBQztvQkFDekUsU0FBUyxFQUFFLENBQUMsa0JBQWtCLDZCQUE2QixDQUFDO2lCQUMvRCIsInNvdXJjZXNDb250ZW50IjpbIi8vIEdFTkVSQVRFRCAtIEFuZ3VsYXJUaHJlZSB2MS4wLjBcbmltcG9ydCB7IGluamVjdEFyZ3MsIE5ndEluc3RhbmNlLCBwcm92aWRlSW5zdGFuY2VSZWYsIHByb3hpZnkgfSBmcm9tICdhbmd1bGFyLXRocmVlJztcbmltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0ICogYXMgVEhSRUUgZnJvbSAndGhyZWUnO1xuaW1wb3J0IHsgTkdUX0lOU1RBTkNFX0lOUFVUUyB9IGZyb20gJy4uL2NvbW1vbic7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmd0LWluc3RhbmNlZC1idWZmZXItYXR0cmlidXRlJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIHRlbXBsYXRlOiAnPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PicsXG4gICAgaG9zdERpcmVjdGl2ZXM6IFt7IGRpcmVjdGl2ZTogTmd0SW5zdGFuY2UsIGlucHV0czogTkdUX0lOU1RBTkNFX0lOUFVUUyB9XSxcbiAgICBwcm92aWRlcnM6IFtwcm92aWRlSW5zdGFuY2VSZWYoTmd0SW5zdGFuY2VkQnVmZmVyQXR0cmlidXRlKV0sXG59KVxuZXhwb3J0IGNsYXNzIE5ndEluc3RhbmNlZEJ1ZmZlckF0dHJpYnV0ZSBleHRlbmRzIFRIUkVFLkluc3RhbmNlZEJ1ZmZlckF0dHJpYnV0ZSB7XG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIHN1cGVyKC4uLihpbmplY3RBcmdzPHR5cGVvZiBUSFJFRS5JbnN0YW5jZWRCdWZmZXJBdHRyaWJ1dGU+KHsgb3B0aW9uYWw6IHRydWUgfSkgfHwgW1tdLCAwXSkpO1xuICAgICAgICByZXR1cm4gcHJveGlmeSh0aGlzKTtcbiAgICB9XG59XG4iXX0=
|