angular-three 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/attributes/README.md +3 -0
- package/attributes/index.d.ts +22 -0
- package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +8 -0
- package/attributes/lib/color-attribute/color-attribute.d.ts +8 -0
- package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +8 -0
- package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +8 -0
- package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +8 -0
- package/attributes/lib/fog-attribute/fog-attribute.d.ts +8 -0
- package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +8 -0
- package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +8 -0
- package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +8 -0
- package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +8 -0
- package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +8 -0
- package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +8 -0
- package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +8 -0
- package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +8 -0
- package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +8 -0
- package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +8 -0
- package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +8 -0
- package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +8 -0
- package/attributes/lib/value-attribute/value-attribute.d.ts +8 -0
- package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +8 -0
- package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +8 -0
- package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +8 -0
- package/audios/README.md +3 -0
- package/audios/index.d.ts +3 -0
- package/audios/lib/audio/audio.d.ts +49 -0
- package/audios/lib/audio-listener/audio-listener.d.ts +35 -0
- package/audios/lib/positional-audio/positional-audio.d.ts +49 -0
- package/cameras/README.md +3 -0
- package/cameras/index.d.ts +5 -0
- package/cameras/lib/array-camera/array-camera.d.ts +56 -0
- package/cameras/lib/cube-camera/cube-camera.d.ts +36 -0
- package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +54 -0
- package/cameras/lib/perspective-camera/perspective-camera.d.ts +55 -0
- package/cameras/lib/stereo-camera/stereo-camera.d.ts +42 -0
- package/esm2020/attributes/angular-three-attributes.mjs +5 -0
- package/esm2020/attributes/index.mjs +24 -0
- package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +25 -0
- package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +25 -0
- package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +25 -0
- package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +29 -0
- package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +25 -0
- package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +25 -0
- package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +25 -0
- package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +27 -0
- package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +25 -0
- package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +25 -0
- package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +25 -0
- package/esm2020/audios/angular-three-audios.mjs +5 -0
- package/esm2020/audios/index.mjs +5 -0
- package/esm2020/audios/lib/audio/audio.mjs +68 -0
- package/esm2020/audios/lib/audio-listener/audio-listener.mjs +65 -0
- package/esm2020/audios/lib/positional-audio/positional-audio.mjs +68 -0
- package/esm2020/cameras/angular-three-cameras.mjs +5 -0
- package/esm2020/cameras/index.mjs +7 -0
- package/esm2020/cameras/lib/array-camera/array-camera.mjs +67 -0
- package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +55 -0
- package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +65 -0
- package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +66 -0
- package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +61 -0
- package/esm2020/geometries/angular-three-geometries.mjs +5 -0
- package/esm2020/geometries/index.mjs +25 -0
- package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +25 -0
- package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +25 -0
- package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +25 -0
- package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +25 -0
- package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +25 -0
- package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +25 -0
- package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +25 -0
- package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +25 -0
- package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +25 -0
- package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +25 -0
- package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +25 -0
- package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +25 -0
- package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +25 -0
- package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +25 -0
- package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +25 -0
- package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +25 -0
- package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +25 -0
- package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +25 -0
- package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +25 -0
- package/esm2020/helpers/angular-three-helpers.mjs +5 -0
- package/esm2020/helpers/index.mjs +15 -0
- package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +25 -0
- package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +25 -0
- package/esm2020/helpers/lib/box-helper/box-helper.mjs +35 -0
- package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +35 -0
- package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +35 -0
- package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +35 -0
- package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +25 -0
- package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +35 -0
- package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +35 -0
- package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +35 -0
- package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +25 -0
- package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +35 -0
- package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +35 -0
- package/esm2020/index.mjs +39 -2
- package/esm2020/lib/canvas.mjs +229 -0
- package/esm2020/lib/di/resize.mjs +19 -0
- package/esm2020/lib/di/window.mjs +13 -0
- package/esm2020/lib/directives/args.mjs +30 -0
- package/esm2020/lib/directives/cursor.mjs +35 -0
- package/esm2020/lib/directives/repeat.mjs +20 -0
- package/esm2020/lib/events.mjs +53 -0
- package/esm2020/lib/instance.mjs +368 -0
- package/esm2020/lib/pipes/math.mjs +15 -0
- package/esm2020/lib/pipes/pi.mjs +14 -0
- package/esm2020/lib/pipes/radian.mjs +14 -0
- package/esm2020/lib/pipes/side.mjs +22 -0
- package/esm2020/lib/ref.mjs +15 -0
- package/esm2020/lib/services/loader.mjs +45 -0
- package/esm2020/lib/services/resize.mjs +127 -0
- package/esm2020/lib/stores/component-store.mjs +137 -0
- package/esm2020/lib/stores/store.mjs +433 -0
- package/esm2020/lib/types.mjs +2 -0
- package/esm2020/lib/utils/apply-props.mjs +135 -0
- package/esm2020/lib/utils/build-graph.mjs +15 -0
- package/esm2020/lib/utils/camera.mjs +28 -0
- package/esm2020/lib/utils/capitalize.mjs +4 -0
- package/esm2020/lib/utils/check-update.mjs +22 -0
- package/esm2020/lib/utils/events.mjs +353 -0
- package/esm2020/lib/utils/get-instance-local-state.mjs +6 -0
- package/esm2020/lib/utils/inject.mjs +18 -0
- package/esm2020/lib/utils/instance.mjs +35 -0
- package/esm2020/lib/utils/is.mjs +54 -0
- package/esm2020/lib/utils/loop.mjs +139 -0
- package/esm2020/lib/utils/make.mjs +30 -0
- package/esm2020/lib/utils/mutate.mjs +24 -0
- package/esm2020/lib/utils/proxy.mjs +99 -0
- package/esm2020/lib/utils/renderer.mjs +15 -0
- package/esm2020/lights/angular-three-lights.mjs +5 -0
- package/esm2020/lights/index.mjs +11 -0
- package/esm2020/lights/lib/ambient-light/ambient-light.mjs +58 -0
- package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +59 -0
- package/esm2020/lights/lib/directional-light/directional-light.mjs +59 -0
- package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +60 -0
- package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +61 -0
- package/esm2020/lights/lib/light-probe/light-probe.mjs +59 -0
- package/esm2020/lights/lib/point-light/point-light.mjs +61 -0
- package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +61 -0
- package/esm2020/lights/lib/spot-light/spot-light.mjs +64 -0
- package/esm2020/materials/angular-three-materials.mjs +5 -0
- package/esm2020/materials/index.mjs +19 -0
- package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +76 -0
- package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +79 -0
- package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +88 -0
- package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +79 -0
- package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +79 -0
- package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +99 -0
- package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +85 -0
- package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +82 -0
- package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +102 -0
- package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +118 -0
- package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +99 -0
- package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +95 -0
- package/esm2020/materials/lib/points-material/points-material.mjs +77 -0
- package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +82 -0
- package/esm2020/materials/lib/shader-material/shader-material.mjs +82 -0
- package/esm2020/materials/lib/shadow-material/shadow-material.mjs +73 -0
- package/esm2020/materials/lib/sprite-material/sprite-material.mjs +77 -0
- package/esm2020/objects/angular-three-objects.mjs +5 -0
- package/esm2020/objects/index.mjs +14 -0
- package/esm2020/objects/lib/bone/bone.mjs +54 -0
- package/esm2020/objects/lib/group/group.mjs +54 -0
- package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +63 -0
- package/esm2020/objects/lib/line/line.mjs +58 -0
- package/esm2020/objects/lib/line-loop/line-loop.mjs +58 -0
- package/esm2020/objects/lib/line-segments/line-segments.mjs +58 -0
- package/esm2020/objects/lib/lod/lod.mjs +56 -0
- package/esm2020/objects/lib/mesh/mesh.mjs +58 -0
- package/esm2020/objects/lib/points/points.mjs +58 -0
- package/esm2020/objects/lib/skeleton/skeleton.mjs +40 -0
- package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +62 -0
- package/esm2020/objects/lib/sprite/sprite.mjs +57 -0
- package/esm2020/primitives/angular-three-primitives.mjs +5 -0
- package/esm2020/primitives/index.mjs +3 -0
- package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +54 -0
- package/esm2020/primitives/lib/primitive/primitive.mjs +37 -0
- package/esm2020/stats/angular-three-stats.mjs +5 -0
- package/esm2020/stats/index.mjs +2 -0
- package/esm2020/stats/lib/stats/stats.mjs +54 -0
- package/esm2020/textures/angular-three-textures.mjs +5 -0
- package/esm2020/textures/index.mjs +12 -0
- package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +25 -0
- package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +25 -0
- package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +25 -0
- package/esm2020/textures/lib/cube-texture/cube-texture.mjs +25 -0
- package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +25 -0
- package/esm2020/textures/lib/data-texture/data-texture.mjs +25 -0
- package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +25 -0
- package/esm2020/textures/lib/depth-texture/depth-texture.mjs +25 -0
- package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +25 -0
- package/esm2020/textures/lib/video-texture/video-texture.mjs +25 -0
- package/fesm2015/angular-three-attributes.mjs +462 -0
- package/fesm2015/angular-three-attributes.mjs.map +1 -0
- package/fesm2015/angular-three-audios.mjs +201 -0
- package/fesm2015/angular-three-audios.mjs.map +1 -0
- package/fesm2015/angular-three-cameras.mjs +304 -0
- package/fesm2015/angular-three-cameras.mjs.map +1 -0
- package/fesm2015/angular-three-geometries.mjs +475 -0
- package/fesm2015/angular-three-geometries.mjs.map +1 -0
- package/fesm2015/angular-three-helpers.mjs +365 -0
- package/fesm2015/angular-three-helpers.mjs.map +1 -0
- package/fesm2015/angular-three-lights.mjs +511 -0
- package/fesm2015/angular-three-lights.mjs.map +1 -0
- package/fesm2015/angular-three-materials.mjs +1402 -0
- package/fesm2015/angular-three-materials.mjs.map +1 -0
- package/fesm2015/angular-three-objects.mjs +630 -0
- package/fesm2015/angular-three-objects.mjs.map +1 -0
- package/fesm2015/angular-three-primitives.mjs +95 -0
- package/fesm2015/angular-three-primitives.mjs.map +1 -0
- package/fesm2015/angular-three-stats.mjs +62 -0
- package/fesm2015/angular-three-stats.mjs.map +1 -0
- package/fesm2015/angular-three-textures.mjs +215 -0
- package/fesm2015/angular-three-textures.mjs.map +1 -0
- package/fesm2015/angular-three.mjs +2448 -10
- package/fesm2015/angular-three.mjs.map +1 -1
- package/fesm2020/angular-three-attributes.mjs +462 -0
- package/fesm2020/angular-three-attributes.mjs.map +1 -0
- package/fesm2020/angular-three-audios.mjs +201 -0
- package/fesm2020/angular-three-audios.mjs.map +1 -0
- package/fesm2020/angular-three-cameras.mjs +304 -0
- package/fesm2020/angular-three-cameras.mjs.map +1 -0
- package/fesm2020/angular-three-geometries.mjs +475 -0
- package/fesm2020/angular-three-geometries.mjs.map +1 -0
- package/fesm2020/angular-three-helpers.mjs +365 -0
- package/fesm2020/angular-three-helpers.mjs.map +1 -0
- package/fesm2020/angular-three-lights.mjs +511 -0
- package/fesm2020/angular-three-lights.mjs.map +1 -0
- package/fesm2020/angular-three-materials.mjs +1402 -0
- package/fesm2020/angular-three-materials.mjs.map +1 -0
- package/fesm2020/angular-three-objects.mjs +630 -0
- package/fesm2020/angular-three-objects.mjs.map +1 -0
- package/fesm2020/angular-three-primitives.mjs +95 -0
- package/fesm2020/angular-three-primitives.mjs.map +1 -0
- package/fesm2020/angular-three-stats.mjs +62 -0
- package/fesm2020/angular-three-stats.mjs.map +1 -0
- package/fesm2020/angular-three-textures.mjs +215 -0
- package/fesm2020/angular-three-textures.mjs.map +1 -0
- package/fesm2020/angular-three.mjs +2462 -10
- package/fesm2020/angular-three.mjs.map +1 -1
- package/geometries/README.md +3 -0
- package/geometries/index.d.ts +23 -0
- package/geometries/lib/box-geometry/box-geometry.d.ts +8 -0
- package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +8 -0
- package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +8 -0
- package/geometries/lib/circle-geometry/circle-geometry.d.ts +8 -0
- package/geometries/lib/cone-geometry/cone-geometry.d.ts +8 -0
- package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +8 -0
- package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +8 -0
- package/geometries/lib/edges-geometry/edges-geometry.d.ts +8 -0
- package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +8 -0
- package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +8 -0
- package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +8 -0
- package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +8 -0
- package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +8 -0
- package/geometries/lib/plane-geometry/plane-geometry.d.ts +8 -0
- package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +8 -0
- package/geometries/lib/ring-geometry/ring-geometry.d.ts +8 -0
- package/geometries/lib/shape-geometry/shape-geometry.d.ts +8 -0
- package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +8 -0
- package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +8 -0
- package/geometries/lib/torus-geometry/torus-geometry.d.ts +8 -0
- package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +8 -0
- package/geometries/lib/tube-geometry/tube-geometry.d.ts +8 -0
- package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +8 -0
- package/helpers/README.md +3 -0
- package/helpers/index.d.ts +13 -0
- package/helpers/lib/arrow-helper/arrow-helper.d.ts +8 -0
- package/helpers/lib/axes-helper/axes-helper.d.ts +8 -0
- package/helpers/lib/box-helper/box-helper.d.ts +8 -0
- package/helpers/lib/box3-helper/box3-helper.d.ts +8 -0
- package/helpers/lib/camera-helper/camera-helper.d.ts +8 -0
- package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +8 -0
- package/helpers/lib/grid-helper/grid-helper.d.ts +8 -0
- package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +8 -0
- package/helpers/lib/plane-helper/plane-helper.d.ts +8 -0
- package/helpers/lib/point-light-helper/point-light-helper.d.ts +8 -0
- package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +8 -0
- package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +8 -0
- package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +8 -0
- package/index.d.ts +38 -1
- package/lib/canvas.d.ts +46 -0
- package/lib/di/resize.d.ts +12 -0
- package/lib/di/window.d.ts +1 -0
- package/lib/directives/args.d.ts +19 -0
- package/lib/directives/cursor.d.ts +7 -0
- package/lib/directives/repeat.d.ts +7 -0
- package/lib/events.d.ts +2 -0
- package/lib/instance.d.ts +81 -0
- package/lib/pipes/math.d.ts +7 -0
- package/lib/pipes/pi.d.ts +7 -0
- package/lib/pipes/radian.d.ts +7 -0
- package/lib/pipes/side.d.ts +8 -0
- package/lib/ref.d.ts +5 -0
- package/lib/services/loader.d.ts +11 -0
- package/lib/services/resize.d.ts +19 -0
- package/lib/stores/component-store.d.ts +69 -0
- package/lib/stores/store.d.ts +32 -0
- package/lib/types.d.ts +358 -0
- package/lib/utils/apply-props.d.ts +6 -0
- package/lib/utils/build-graph.d.ts +3 -0
- package/lib/utils/camera.d.ts +4 -0
- package/lib/utils/capitalize.d.ts +1 -0
- package/lib/utils/check-update.d.ts +2 -0
- package/lib/utils/events.d.ts +6 -0
- package/lib/utils/get-instance-local-state.d.ts +2 -0
- package/lib/utils/inject.d.ts +9 -0
- package/lib/utils/instance.d.ts +4 -0
- package/lib/utils/is.d.ts +21 -0
- package/lib/utils/loop.d.ts +32 -0
- package/lib/utils/make.d.ts +4 -0
- package/lib/utils/mutate.d.ts +2 -0
- package/lib/utils/proxy.d.ts +7 -0
- package/lib/utils/renderer.d.ts +3 -0
- package/lights/README.md +3 -0
- package/lights/index.d.ts +9 -0
- package/lights/lib/ambient-light/ambient-light.d.ts +39 -0
- package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +40 -0
- package/lights/lib/directional-light/directional-light.d.ts +40 -0
- package/lights/lib/hemisphere-light/hemisphere-light.d.ts +41 -0
- package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +42 -0
- package/lights/lib/light-probe/light-probe.d.ts +40 -0
- package/lights/lib/point-light/point-light.d.ts +42 -0
- package/lights/lib/rect-area-light/rect-area-light.d.ts +42 -0
- package/lights/lib/spot-light/spot-light.d.ts +45 -0
- package/materials/README.md +3 -0
- package/materials/index.d.ts +17 -0
- package/materials/lib/line-basic-material/line-basic-material.d.ts +55 -0
- package/materials/lib/line-dashed-material/line-dashed-material.d.ts +58 -0
- package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +67 -0
- package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +58 -0
- package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +58 -0
- package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +78 -0
- package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +64 -0
- package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +61 -0
- package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +81 -0
- package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +97 -0
- package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +78 -0
- package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +74 -0
- package/materials/lib/points-material/points-material.d.ts +56 -0
- package/materials/lib/raw-shader-material/raw-shader-material.d.ts +68 -0
- package/materials/lib/shader-material/shader-material.d.ts +68 -0
- package/materials/lib/shadow-material/shadow-material.d.ts +52 -0
- package/materials/lib/sprite-material/sprite-material.d.ts +56 -0
- package/objects/README.md +3 -0
- package/objects/index.d.ts +12 -0
- package/objects/lib/bone/bone.d.ts +35 -0
- package/objects/lib/group/group.d.ts +35 -0
- package/objects/lib/instanced-mesh/instanced-mesh.d.ts +44 -0
- package/objects/lib/line/line.d.ts +41 -0
- package/objects/lib/line-loop/line-loop.d.ts +41 -0
- package/objects/lib/line-segments/line-segments.d.ts +41 -0
- package/objects/lib/lod/lod.d.ts +40 -0
- package/objects/lib/mesh/mesh.d.ts +41 -0
- package/objects/lib/points/points.d.ts +41 -0
- package/objects/lib/skeleton/skeleton.d.ts +16 -0
- package/objects/lib/skinned-mesh/skinned-mesh.d.ts +45 -0
- package/objects/lib/sprite/sprite.d.ts +38 -0
- package/package.json +93 -2
- package/primitives/README.md +3 -0
- package/primitives/index.d.ts +2 -0
- package/primitives/lib/object-primitive/object-primitive.d.ts +35 -0
- package/primitives/lib/primitive/primitive.d.ts +10 -0
- package/schematics/src/generators/init/generator.d.ts +1 -1
- package/schematics/src/generators/init/generator.js +4 -4
- package/schematics/src/generators/init/generator.js.map +1 -1
- package/stats/README.md +3 -0
- package/stats/index.d.ts +1 -0
- package/stats/lib/stats/stats.d.ts +16 -0
- package/textures/README.md +3 -0
- package/textures/index.d.ts +10 -0
- package/textures/lib/canvas-texture/canvas-texture.d.ts +8 -0
- package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +8 -0
- package/textures/lib/compressed-texture/compressed-texture.d.ts +8 -0
- package/textures/lib/cube-texture/cube-texture.d.ts +8 -0
- package/textures/lib/data-array-texture/data-array-texture.d.ts +8 -0
- package/textures/lib/data-texture/data-texture.d.ts +8 -0
- package/textures/lib/data3-dtexture/data3-dtexture.d.ts +8 -0
- package/textures/lib/depth-texture/depth-texture.d.ts +8 -0
- package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +8 -0
- package/textures/lib/video-texture/video-texture.d.ts +8 -0
- package/esm2020/lib/angular-three.module.mjs +0 -15
- package/lib/angular-three.module.d.ts +0 -7
|
@@ -0,0 +1,1402 @@
|
|
|
1
|
+
import * as i1 from 'angular-three';
|
|
2
|
+
import { proxify, provideInstanceRef, NgtInstance, NGT_INSTANCE_INPUTS, NGT_INSTANCE_OUTPUTS } from 'angular-three';
|
|
3
|
+
import * as i0 from '@angular/core';
|
|
4
|
+
import { Component } from '@angular/core';
|
|
5
|
+
import * as THREE from 'three';
|
|
6
|
+
|
|
7
|
+
// GENERATED - AngularThree v1.0.0
|
|
8
|
+
class NgtLineBasicMaterial extends THREE.LineBasicMaterial {
|
|
9
|
+
constructor() {
|
|
10
|
+
super();
|
|
11
|
+
return proxify(this, { attach: 'material' });
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
NgtLineBasicMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineBasicMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
+
NgtLineBasicMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLineBasicMaterial, isStandalone: true, selector: "ngt-line-basic-material", inputs: { color: "color", fog: "fog", linewidth: "linewidth", linecap: "linecap", linejoin: "linejoin", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtLineBasicMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineBasicMaterial, decorators: [{
|
|
17
|
+
type: Component,
|
|
18
|
+
args: [{
|
|
19
|
+
selector: 'ngt-line-basic-material',
|
|
20
|
+
standalone: true,
|
|
21
|
+
template: '<ng-content></ng-content>',
|
|
22
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
23
|
+
providers: [provideInstanceRef(NgtLineBasicMaterial)],
|
|
24
|
+
inputs: [...getInputs$g()],
|
|
25
|
+
}]
|
|
26
|
+
}], ctorParameters: function () { return []; } });
|
|
27
|
+
function getInputs$g() {
|
|
28
|
+
return [
|
|
29
|
+
'color',
|
|
30
|
+
'fog',
|
|
31
|
+
'linewidth',
|
|
32
|
+
'linecap',
|
|
33
|
+
'linejoin',
|
|
34
|
+
'alphaTest',
|
|
35
|
+
'alphaToCoverage',
|
|
36
|
+
'blendDst',
|
|
37
|
+
'blendDstAlpha',
|
|
38
|
+
'blendEquation',
|
|
39
|
+
'blendEquationAlpha',
|
|
40
|
+
'blending',
|
|
41
|
+
'blendSrc',
|
|
42
|
+
'blendSrcAlpha',
|
|
43
|
+
'clipIntersection',
|
|
44
|
+
'clippingPlanes',
|
|
45
|
+
'clipShadows',
|
|
46
|
+
'colorWrite',
|
|
47
|
+
'defines',
|
|
48
|
+
'depthFunc',
|
|
49
|
+
'depthTest',
|
|
50
|
+
'depthWrite',
|
|
51
|
+
'name',
|
|
52
|
+
'opacity',
|
|
53
|
+
'polygonOffset',
|
|
54
|
+
'polygonOffsetFactor',
|
|
55
|
+
'polygonOffsetUnits',
|
|
56
|
+
'precision',
|
|
57
|
+
'premultipliedAlpha',
|
|
58
|
+
'dithering',
|
|
59
|
+
'side',
|
|
60
|
+
'shadowSide',
|
|
61
|
+
'toneMapped',
|
|
62
|
+
'transparent',
|
|
63
|
+
'vertexColors',
|
|
64
|
+
'visible',
|
|
65
|
+
'format',
|
|
66
|
+
'stencilWrite',
|
|
67
|
+
'stencilFunc',
|
|
68
|
+
'stencilRef',
|
|
69
|
+
'stencilWriteMask',
|
|
70
|
+
'stencilFuncMask',
|
|
71
|
+
'stencilFail',
|
|
72
|
+
'stencilZFail',
|
|
73
|
+
'stencilZPass',
|
|
74
|
+
'userData',
|
|
75
|
+
];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// GENERATED - AngularThree v1.0.0
|
|
79
|
+
class NgtLineDashedMaterial extends THREE.LineDashedMaterial {
|
|
80
|
+
constructor() {
|
|
81
|
+
super();
|
|
82
|
+
return proxify(this, { attach: 'material' });
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
NgtLineDashedMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineDashedMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
86
|
+
NgtLineDashedMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLineDashedMaterial, isStandalone: true, selector: "ngt-line-dashed-material", inputs: { scale: "scale", dashSize: "dashSize", gapSize: "gapSize", color: "color", fog: "fog", linewidth: "linewidth", linecap: "linecap", linejoin: "linejoin", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtLineDashedMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
87
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineDashedMaterial, decorators: [{
|
|
88
|
+
type: Component,
|
|
89
|
+
args: [{
|
|
90
|
+
selector: 'ngt-line-dashed-material',
|
|
91
|
+
standalone: true,
|
|
92
|
+
template: '<ng-content></ng-content>',
|
|
93
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
94
|
+
providers: [provideInstanceRef(NgtLineDashedMaterial)],
|
|
95
|
+
inputs: [...getInputs$f()],
|
|
96
|
+
}]
|
|
97
|
+
}], ctorParameters: function () { return []; } });
|
|
98
|
+
function getInputs$f() {
|
|
99
|
+
return [
|
|
100
|
+
'scale',
|
|
101
|
+
'dashSize',
|
|
102
|
+
'gapSize',
|
|
103
|
+
'color',
|
|
104
|
+
'fog',
|
|
105
|
+
'linewidth',
|
|
106
|
+
'linecap',
|
|
107
|
+
'linejoin',
|
|
108
|
+
'alphaTest',
|
|
109
|
+
'alphaToCoverage',
|
|
110
|
+
'blendDst',
|
|
111
|
+
'blendDstAlpha',
|
|
112
|
+
'blendEquation',
|
|
113
|
+
'blendEquationAlpha',
|
|
114
|
+
'blending',
|
|
115
|
+
'blendSrc',
|
|
116
|
+
'blendSrcAlpha',
|
|
117
|
+
'clipIntersection',
|
|
118
|
+
'clippingPlanes',
|
|
119
|
+
'clipShadows',
|
|
120
|
+
'colorWrite',
|
|
121
|
+
'defines',
|
|
122
|
+
'depthFunc',
|
|
123
|
+
'depthTest',
|
|
124
|
+
'depthWrite',
|
|
125
|
+
'name',
|
|
126
|
+
'opacity',
|
|
127
|
+
'polygonOffset',
|
|
128
|
+
'polygonOffsetFactor',
|
|
129
|
+
'polygonOffsetUnits',
|
|
130
|
+
'precision',
|
|
131
|
+
'premultipliedAlpha',
|
|
132
|
+
'dithering',
|
|
133
|
+
'side',
|
|
134
|
+
'shadowSide',
|
|
135
|
+
'toneMapped',
|
|
136
|
+
'transparent',
|
|
137
|
+
'vertexColors',
|
|
138
|
+
'visible',
|
|
139
|
+
'format',
|
|
140
|
+
'stencilWrite',
|
|
141
|
+
'stencilFunc',
|
|
142
|
+
'stencilRef',
|
|
143
|
+
'stencilWriteMask',
|
|
144
|
+
'stencilFuncMask',
|
|
145
|
+
'stencilFail',
|
|
146
|
+
'stencilZFail',
|
|
147
|
+
'stencilZPass',
|
|
148
|
+
'userData',
|
|
149
|
+
];
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// GENERATED - AngularThree v1.0.0
|
|
153
|
+
class NgtMeshBasicMaterial extends THREE.MeshBasicMaterial {
|
|
154
|
+
constructor() {
|
|
155
|
+
super();
|
|
156
|
+
return proxify(this, { attach: 'material' });
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
NgtMeshBasicMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshBasicMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
160
|
+
NgtMeshBasicMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshBasicMaterial, isStandalone: true, selector: "ngt-mesh-basic-material", inputs: { color: "color", opacity: "opacity", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", specularMap: "specularMap", alphaMap: "alphaMap", fog: "fog", envMap: "envMap", combine: "combine", reflectivity: "reflectivity", refractionRatio: "refractionRatio", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", wireframeLinecap: "wireframeLinecap", wireframeLinejoin: "wireframeLinejoin", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshBasicMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshBasicMaterial, decorators: [{
|
|
162
|
+
type: Component,
|
|
163
|
+
args: [{
|
|
164
|
+
selector: 'ngt-mesh-basic-material',
|
|
165
|
+
standalone: true,
|
|
166
|
+
template: '<ng-content></ng-content>',
|
|
167
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
168
|
+
providers: [provideInstanceRef(NgtMeshBasicMaterial)],
|
|
169
|
+
inputs: [...getInputs$e()],
|
|
170
|
+
}]
|
|
171
|
+
}], ctorParameters: function () { return []; } });
|
|
172
|
+
function getInputs$e() {
|
|
173
|
+
return [
|
|
174
|
+
'color',
|
|
175
|
+
'opacity',
|
|
176
|
+
'map',
|
|
177
|
+
'lightMap',
|
|
178
|
+
'lightMapIntensity',
|
|
179
|
+
'aoMap',
|
|
180
|
+
'aoMapIntensity',
|
|
181
|
+
'specularMap',
|
|
182
|
+
'alphaMap',
|
|
183
|
+
'fog',
|
|
184
|
+
'envMap',
|
|
185
|
+
'combine',
|
|
186
|
+
'reflectivity',
|
|
187
|
+
'refractionRatio',
|
|
188
|
+
'wireframe',
|
|
189
|
+
'wireframeLinewidth',
|
|
190
|
+
'wireframeLinecap',
|
|
191
|
+
'wireframeLinejoin',
|
|
192
|
+
'alphaTest',
|
|
193
|
+
'alphaToCoverage',
|
|
194
|
+
'blendDst',
|
|
195
|
+
'blendDstAlpha',
|
|
196
|
+
'blendEquation',
|
|
197
|
+
'blendEquationAlpha',
|
|
198
|
+
'blending',
|
|
199
|
+
'blendSrc',
|
|
200
|
+
'blendSrcAlpha',
|
|
201
|
+
'clipIntersection',
|
|
202
|
+
'clippingPlanes',
|
|
203
|
+
'clipShadows',
|
|
204
|
+
'colorWrite',
|
|
205
|
+
'defines',
|
|
206
|
+
'depthFunc',
|
|
207
|
+
'depthTest',
|
|
208
|
+
'depthWrite',
|
|
209
|
+
'name',
|
|
210
|
+
'polygonOffset',
|
|
211
|
+
'polygonOffsetFactor',
|
|
212
|
+
'polygonOffsetUnits',
|
|
213
|
+
'precision',
|
|
214
|
+
'premultipliedAlpha',
|
|
215
|
+
'dithering',
|
|
216
|
+
'side',
|
|
217
|
+
'shadowSide',
|
|
218
|
+
'toneMapped',
|
|
219
|
+
'transparent',
|
|
220
|
+
'vertexColors',
|
|
221
|
+
'visible',
|
|
222
|
+
'format',
|
|
223
|
+
'stencilWrite',
|
|
224
|
+
'stencilFunc',
|
|
225
|
+
'stencilRef',
|
|
226
|
+
'stencilWriteMask',
|
|
227
|
+
'stencilFuncMask',
|
|
228
|
+
'stencilFail',
|
|
229
|
+
'stencilZFail',
|
|
230
|
+
'stencilZPass',
|
|
231
|
+
'userData',
|
|
232
|
+
];
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
// GENERATED - AngularThree v1.0.0
|
|
236
|
+
class NgtMeshDepthMaterial extends THREE.MeshDepthMaterial {
|
|
237
|
+
constructor() {
|
|
238
|
+
super();
|
|
239
|
+
return proxify(this, { attach: 'material' });
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
NgtMeshDepthMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshDepthMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
243
|
+
NgtMeshDepthMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshDepthMaterial, isStandalone: true, selector: "ngt-mesh-depth-material", inputs: { map: "map", alphaMap: "alphaMap", depthPacking: "depthPacking", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshDepthMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshDepthMaterial, decorators: [{
|
|
245
|
+
type: Component,
|
|
246
|
+
args: [{
|
|
247
|
+
selector: 'ngt-mesh-depth-material',
|
|
248
|
+
standalone: true,
|
|
249
|
+
template: '<ng-content></ng-content>',
|
|
250
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
251
|
+
providers: [provideInstanceRef(NgtMeshDepthMaterial)],
|
|
252
|
+
inputs: [...getInputs$d()],
|
|
253
|
+
}]
|
|
254
|
+
}], ctorParameters: function () { return []; } });
|
|
255
|
+
function getInputs$d() {
|
|
256
|
+
return [
|
|
257
|
+
'map',
|
|
258
|
+
'alphaMap',
|
|
259
|
+
'depthPacking',
|
|
260
|
+
'displacementMap',
|
|
261
|
+
'displacementScale',
|
|
262
|
+
'displacementBias',
|
|
263
|
+
'wireframe',
|
|
264
|
+
'wireframeLinewidth',
|
|
265
|
+
'alphaTest',
|
|
266
|
+
'alphaToCoverage',
|
|
267
|
+
'blendDst',
|
|
268
|
+
'blendDstAlpha',
|
|
269
|
+
'blendEquation',
|
|
270
|
+
'blendEquationAlpha',
|
|
271
|
+
'blending',
|
|
272
|
+
'blendSrc',
|
|
273
|
+
'blendSrcAlpha',
|
|
274
|
+
'clipIntersection',
|
|
275
|
+
'clippingPlanes',
|
|
276
|
+
'clipShadows',
|
|
277
|
+
'colorWrite',
|
|
278
|
+
'defines',
|
|
279
|
+
'depthFunc',
|
|
280
|
+
'depthTest',
|
|
281
|
+
'depthWrite',
|
|
282
|
+
'name',
|
|
283
|
+
'opacity',
|
|
284
|
+
'polygonOffset',
|
|
285
|
+
'polygonOffsetFactor',
|
|
286
|
+
'polygonOffsetUnits',
|
|
287
|
+
'precision',
|
|
288
|
+
'premultipliedAlpha',
|
|
289
|
+
'dithering',
|
|
290
|
+
'side',
|
|
291
|
+
'shadowSide',
|
|
292
|
+
'toneMapped',
|
|
293
|
+
'transparent',
|
|
294
|
+
'vertexColors',
|
|
295
|
+
'visible',
|
|
296
|
+
'format',
|
|
297
|
+
'stencilWrite',
|
|
298
|
+
'stencilFunc',
|
|
299
|
+
'stencilRef',
|
|
300
|
+
'stencilWriteMask',
|
|
301
|
+
'stencilFuncMask',
|
|
302
|
+
'stencilFail',
|
|
303
|
+
'stencilZFail',
|
|
304
|
+
'stencilZPass',
|
|
305
|
+
'userData',
|
|
306
|
+
];
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
// GENERATED - AngularThree v1.0.0
|
|
310
|
+
class NgtMeshDistanceMaterial extends THREE.MeshDistanceMaterial {
|
|
311
|
+
constructor() {
|
|
312
|
+
super();
|
|
313
|
+
return proxify(this, { attach: 'material' });
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
NgtMeshDistanceMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshDistanceMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
317
|
+
NgtMeshDistanceMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshDistanceMaterial, isStandalone: true, selector: "ngt-mesh-distance-material", inputs: { map: "map", alphaMap: "alphaMap", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", farDistance: "farDistance", nearDistance: "nearDistance", referencePosition: "referencePosition", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshDistanceMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
318
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshDistanceMaterial, decorators: [{
|
|
319
|
+
type: Component,
|
|
320
|
+
args: [{
|
|
321
|
+
selector: 'ngt-mesh-distance-material',
|
|
322
|
+
standalone: true,
|
|
323
|
+
template: '<ng-content></ng-content>',
|
|
324
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
325
|
+
providers: [provideInstanceRef(NgtMeshDistanceMaterial)],
|
|
326
|
+
inputs: [...getInputs$c()],
|
|
327
|
+
}]
|
|
328
|
+
}], ctorParameters: function () { return []; } });
|
|
329
|
+
function getInputs$c() {
|
|
330
|
+
return [
|
|
331
|
+
'map',
|
|
332
|
+
'alphaMap',
|
|
333
|
+
'displacementMap',
|
|
334
|
+
'displacementScale',
|
|
335
|
+
'displacementBias',
|
|
336
|
+
'farDistance',
|
|
337
|
+
'nearDistance',
|
|
338
|
+
'referencePosition',
|
|
339
|
+
'alphaTest',
|
|
340
|
+
'alphaToCoverage',
|
|
341
|
+
'blendDst',
|
|
342
|
+
'blendDstAlpha',
|
|
343
|
+
'blendEquation',
|
|
344
|
+
'blendEquationAlpha',
|
|
345
|
+
'blending',
|
|
346
|
+
'blendSrc',
|
|
347
|
+
'blendSrcAlpha',
|
|
348
|
+
'clipIntersection',
|
|
349
|
+
'clippingPlanes',
|
|
350
|
+
'clipShadows',
|
|
351
|
+
'colorWrite',
|
|
352
|
+
'defines',
|
|
353
|
+
'depthFunc',
|
|
354
|
+
'depthTest',
|
|
355
|
+
'depthWrite',
|
|
356
|
+
'name',
|
|
357
|
+
'opacity',
|
|
358
|
+
'polygonOffset',
|
|
359
|
+
'polygonOffsetFactor',
|
|
360
|
+
'polygonOffsetUnits',
|
|
361
|
+
'precision',
|
|
362
|
+
'premultipliedAlpha',
|
|
363
|
+
'dithering',
|
|
364
|
+
'side',
|
|
365
|
+
'shadowSide',
|
|
366
|
+
'toneMapped',
|
|
367
|
+
'transparent',
|
|
368
|
+
'vertexColors',
|
|
369
|
+
'visible',
|
|
370
|
+
'format',
|
|
371
|
+
'stencilWrite',
|
|
372
|
+
'stencilFunc',
|
|
373
|
+
'stencilRef',
|
|
374
|
+
'stencilWriteMask',
|
|
375
|
+
'stencilFuncMask',
|
|
376
|
+
'stencilFail',
|
|
377
|
+
'stencilZFail',
|
|
378
|
+
'stencilZPass',
|
|
379
|
+
'userData',
|
|
380
|
+
];
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
// GENERATED - AngularThree v1.0.0
|
|
384
|
+
class NgtMeshLambertMaterial extends THREE.MeshLambertMaterial {
|
|
385
|
+
constructor() {
|
|
386
|
+
super();
|
|
387
|
+
return proxify(this, { attach: 'material' });
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
NgtMeshLambertMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshLambertMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
391
|
+
NgtMeshLambertMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshLambertMaterial, isStandalone: true, selector: "ngt-mesh-lambert-material", inputs: { bumpMap: "bumpMap", bumpScale: "bumpScale", color: "color", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", flatShading: "flatShading", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", normalMap: "normalMap", normalScale: "normalScale", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", specularMap: "specularMap", alphaMap: "alphaMap", envMap: "envMap", combine: "combine", reflectivity: "reflectivity", refractionRatio: "refractionRatio", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", wireframeLinecap: "wireframeLinecap", wireframeLinejoin: "wireframeLinejoin", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshLambertMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshLambertMaterial, decorators: [{
|
|
393
|
+
type: Component,
|
|
394
|
+
args: [{
|
|
395
|
+
selector: 'ngt-mesh-lambert-material',
|
|
396
|
+
standalone: true,
|
|
397
|
+
template: '<ng-content></ng-content>',
|
|
398
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
399
|
+
providers: [provideInstanceRef(NgtMeshLambertMaterial)],
|
|
400
|
+
inputs: [...getInputs$b()],
|
|
401
|
+
}]
|
|
402
|
+
}], ctorParameters: function () { return []; } });
|
|
403
|
+
function getInputs$b() {
|
|
404
|
+
return [
|
|
405
|
+
'bumpMap',
|
|
406
|
+
'bumpScale',
|
|
407
|
+
'color',
|
|
408
|
+
'displacementMap',
|
|
409
|
+
'displacementScale',
|
|
410
|
+
'displacementBias',
|
|
411
|
+
'emissive',
|
|
412
|
+
'emissiveIntensity',
|
|
413
|
+
'emissiveMap',
|
|
414
|
+
'flatShading',
|
|
415
|
+
'map',
|
|
416
|
+
'lightMap',
|
|
417
|
+
'lightMapIntensity',
|
|
418
|
+
'normalMap',
|
|
419
|
+
'normalScale',
|
|
420
|
+
'aoMap',
|
|
421
|
+
'aoMapIntensity',
|
|
422
|
+
'specularMap',
|
|
423
|
+
'alphaMap',
|
|
424
|
+
'envMap',
|
|
425
|
+
'combine',
|
|
426
|
+
'reflectivity',
|
|
427
|
+
'refractionRatio',
|
|
428
|
+
'wireframe',
|
|
429
|
+
'wireframeLinewidth',
|
|
430
|
+
'wireframeLinecap',
|
|
431
|
+
'wireframeLinejoin',
|
|
432
|
+
'fog',
|
|
433
|
+
'alphaTest',
|
|
434
|
+
'alphaToCoverage',
|
|
435
|
+
'blendDst',
|
|
436
|
+
'blendDstAlpha',
|
|
437
|
+
'blendEquation',
|
|
438
|
+
'blendEquationAlpha',
|
|
439
|
+
'blending',
|
|
440
|
+
'blendSrc',
|
|
441
|
+
'blendSrcAlpha',
|
|
442
|
+
'clipIntersection',
|
|
443
|
+
'clippingPlanes',
|
|
444
|
+
'clipShadows',
|
|
445
|
+
'colorWrite',
|
|
446
|
+
'defines',
|
|
447
|
+
'depthFunc',
|
|
448
|
+
'depthTest',
|
|
449
|
+
'depthWrite',
|
|
450
|
+
'name',
|
|
451
|
+
'opacity',
|
|
452
|
+
'polygonOffset',
|
|
453
|
+
'polygonOffsetFactor',
|
|
454
|
+
'polygonOffsetUnits',
|
|
455
|
+
'precision',
|
|
456
|
+
'premultipliedAlpha',
|
|
457
|
+
'dithering',
|
|
458
|
+
'side',
|
|
459
|
+
'shadowSide',
|
|
460
|
+
'toneMapped',
|
|
461
|
+
'transparent',
|
|
462
|
+
'vertexColors',
|
|
463
|
+
'visible',
|
|
464
|
+
'format',
|
|
465
|
+
'stencilWrite',
|
|
466
|
+
'stencilFunc',
|
|
467
|
+
'stencilRef',
|
|
468
|
+
'stencilWriteMask',
|
|
469
|
+
'stencilFuncMask',
|
|
470
|
+
'stencilFail',
|
|
471
|
+
'stencilZFail',
|
|
472
|
+
'stencilZPass',
|
|
473
|
+
'userData',
|
|
474
|
+
];
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
// GENERATED - AngularThree v1.0.0
|
|
478
|
+
class NgtMeshMatcapMaterial extends THREE.MeshMatcapMaterial {
|
|
479
|
+
constructor() {
|
|
480
|
+
super();
|
|
481
|
+
return proxify(this, { attach: 'material' });
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
NgtMeshMatcapMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshMatcapMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
485
|
+
NgtMeshMatcapMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshMatcapMaterial, isStandalone: true, selector: "ngt-mesh-matcap-material", inputs: { color: "color", matcap: "matcap", map: "map", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", alphaMap: "alphaMap", fog: "fog", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshMatcapMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshMatcapMaterial, decorators: [{
|
|
487
|
+
type: Component,
|
|
488
|
+
args: [{
|
|
489
|
+
selector: 'ngt-mesh-matcap-material',
|
|
490
|
+
standalone: true,
|
|
491
|
+
template: '<ng-content></ng-content>',
|
|
492
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
493
|
+
providers: [provideInstanceRef(NgtMeshMatcapMaterial)],
|
|
494
|
+
inputs: [...getInputs$a()],
|
|
495
|
+
}]
|
|
496
|
+
}], ctorParameters: function () { return []; } });
|
|
497
|
+
function getInputs$a() {
|
|
498
|
+
return [
|
|
499
|
+
'color',
|
|
500
|
+
'matcap',
|
|
501
|
+
'map',
|
|
502
|
+
'bumpMap',
|
|
503
|
+
'bumpScale',
|
|
504
|
+
'normalMap',
|
|
505
|
+
'normalMapType',
|
|
506
|
+
'normalScale',
|
|
507
|
+
'displacementMap',
|
|
508
|
+
'displacementScale',
|
|
509
|
+
'displacementBias',
|
|
510
|
+
'alphaMap',
|
|
511
|
+
'fog',
|
|
512
|
+
'flatShading',
|
|
513
|
+
'alphaTest',
|
|
514
|
+
'alphaToCoverage',
|
|
515
|
+
'blendDst',
|
|
516
|
+
'blendDstAlpha',
|
|
517
|
+
'blendEquation',
|
|
518
|
+
'blendEquationAlpha',
|
|
519
|
+
'blending',
|
|
520
|
+
'blendSrc',
|
|
521
|
+
'blendSrcAlpha',
|
|
522
|
+
'clipIntersection',
|
|
523
|
+
'clippingPlanes',
|
|
524
|
+
'clipShadows',
|
|
525
|
+
'colorWrite',
|
|
526
|
+
'defines',
|
|
527
|
+
'depthFunc',
|
|
528
|
+
'depthTest',
|
|
529
|
+
'depthWrite',
|
|
530
|
+
'name',
|
|
531
|
+
'opacity',
|
|
532
|
+
'polygonOffset',
|
|
533
|
+
'polygonOffsetFactor',
|
|
534
|
+
'polygonOffsetUnits',
|
|
535
|
+
'precision',
|
|
536
|
+
'premultipliedAlpha',
|
|
537
|
+
'dithering',
|
|
538
|
+
'side',
|
|
539
|
+
'shadowSide',
|
|
540
|
+
'toneMapped',
|
|
541
|
+
'transparent',
|
|
542
|
+
'vertexColors',
|
|
543
|
+
'visible',
|
|
544
|
+
'format',
|
|
545
|
+
'stencilWrite',
|
|
546
|
+
'stencilFunc',
|
|
547
|
+
'stencilRef',
|
|
548
|
+
'stencilWriteMask',
|
|
549
|
+
'stencilFuncMask',
|
|
550
|
+
'stencilFail',
|
|
551
|
+
'stencilZFail',
|
|
552
|
+
'stencilZPass',
|
|
553
|
+
'userData',
|
|
554
|
+
];
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
// GENERATED - AngularThree v1.0.0
|
|
558
|
+
class NgtMeshNormalMaterial extends THREE.MeshNormalMaterial {
|
|
559
|
+
constructor() {
|
|
560
|
+
super();
|
|
561
|
+
return proxify(this, { attach: 'material' });
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
NgtMeshNormalMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshNormalMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
565
|
+
NgtMeshNormalMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshNormalMaterial, isStandalone: true, selector: "ngt-mesh-normal-material", inputs: { bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshNormalMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
566
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshNormalMaterial, decorators: [{
|
|
567
|
+
type: Component,
|
|
568
|
+
args: [{
|
|
569
|
+
selector: 'ngt-mesh-normal-material',
|
|
570
|
+
standalone: true,
|
|
571
|
+
template: '<ng-content></ng-content>',
|
|
572
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
573
|
+
providers: [provideInstanceRef(NgtMeshNormalMaterial)],
|
|
574
|
+
inputs: [...getInputs$9()],
|
|
575
|
+
}]
|
|
576
|
+
}], ctorParameters: function () { return []; } });
|
|
577
|
+
function getInputs$9() {
|
|
578
|
+
return [
|
|
579
|
+
'bumpMap',
|
|
580
|
+
'bumpScale',
|
|
581
|
+
'normalMap',
|
|
582
|
+
'normalMapType',
|
|
583
|
+
'normalScale',
|
|
584
|
+
'displacementMap',
|
|
585
|
+
'displacementScale',
|
|
586
|
+
'displacementBias',
|
|
587
|
+
'wireframe',
|
|
588
|
+
'wireframeLinewidth',
|
|
589
|
+
'flatShading',
|
|
590
|
+
'alphaTest',
|
|
591
|
+
'alphaToCoverage',
|
|
592
|
+
'blendDst',
|
|
593
|
+
'blendDstAlpha',
|
|
594
|
+
'blendEquation',
|
|
595
|
+
'blendEquationAlpha',
|
|
596
|
+
'blending',
|
|
597
|
+
'blendSrc',
|
|
598
|
+
'blendSrcAlpha',
|
|
599
|
+
'clipIntersection',
|
|
600
|
+
'clippingPlanes',
|
|
601
|
+
'clipShadows',
|
|
602
|
+
'colorWrite',
|
|
603
|
+
'defines',
|
|
604
|
+
'depthFunc',
|
|
605
|
+
'depthTest',
|
|
606
|
+
'depthWrite',
|
|
607
|
+
'name',
|
|
608
|
+
'opacity',
|
|
609
|
+
'polygonOffset',
|
|
610
|
+
'polygonOffsetFactor',
|
|
611
|
+
'polygonOffsetUnits',
|
|
612
|
+
'precision',
|
|
613
|
+
'premultipliedAlpha',
|
|
614
|
+
'dithering',
|
|
615
|
+
'side',
|
|
616
|
+
'shadowSide',
|
|
617
|
+
'toneMapped',
|
|
618
|
+
'transparent',
|
|
619
|
+
'vertexColors',
|
|
620
|
+
'visible',
|
|
621
|
+
'format',
|
|
622
|
+
'stencilWrite',
|
|
623
|
+
'stencilFunc',
|
|
624
|
+
'stencilRef',
|
|
625
|
+
'stencilWriteMask',
|
|
626
|
+
'stencilFuncMask',
|
|
627
|
+
'stencilFail',
|
|
628
|
+
'stencilZFail',
|
|
629
|
+
'stencilZPass',
|
|
630
|
+
'userData',
|
|
631
|
+
];
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
// GENERATED - AngularThree v1.0.0
|
|
635
|
+
class NgtMeshPhongMaterial extends THREE.MeshPhongMaterial {
|
|
636
|
+
constructor() {
|
|
637
|
+
super();
|
|
638
|
+
return proxify(this, { attach: 'material' });
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
NgtMeshPhongMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshPhongMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
642
|
+
NgtMeshPhongMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshPhongMaterial, isStandalone: true, selector: "ngt-mesh-phong-material", inputs: { color: "color", specular: "specular", shininess: "shininess", opacity: "opacity", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", specularMap: "specularMap", alphaMap: "alphaMap", envMap: "envMap", combine: "combine", reflectivity: "reflectivity", refractionRatio: "refractionRatio", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", wireframeLinecap: "wireframeLinecap", wireframeLinejoin: "wireframeLinejoin", fog: "fog", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshPhongMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
643
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshPhongMaterial, decorators: [{
|
|
644
|
+
type: Component,
|
|
645
|
+
args: [{
|
|
646
|
+
selector: 'ngt-mesh-phong-material',
|
|
647
|
+
standalone: true,
|
|
648
|
+
template: '<ng-content></ng-content>',
|
|
649
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
650
|
+
providers: [provideInstanceRef(NgtMeshPhongMaterial)],
|
|
651
|
+
inputs: [...getInputs$8()],
|
|
652
|
+
}]
|
|
653
|
+
}], ctorParameters: function () { return []; } });
|
|
654
|
+
function getInputs$8() {
|
|
655
|
+
return [
|
|
656
|
+
'color',
|
|
657
|
+
'specular',
|
|
658
|
+
'shininess',
|
|
659
|
+
'opacity',
|
|
660
|
+
'map',
|
|
661
|
+
'lightMap',
|
|
662
|
+
'lightMapIntensity',
|
|
663
|
+
'aoMap',
|
|
664
|
+
'aoMapIntensity',
|
|
665
|
+
'emissive',
|
|
666
|
+
'emissiveIntensity',
|
|
667
|
+
'emissiveMap',
|
|
668
|
+
'bumpMap',
|
|
669
|
+
'bumpScale',
|
|
670
|
+
'normalMap',
|
|
671
|
+
'normalMapType',
|
|
672
|
+
'normalScale',
|
|
673
|
+
'displacementMap',
|
|
674
|
+
'displacementScale',
|
|
675
|
+
'displacementBias',
|
|
676
|
+
'specularMap',
|
|
677
|
+
'alphaMap',
|
|
678
|
+
'envMap',
|
|
679
|
+
'combine',
|
|
680
|
+
'reflectivity',
|
|
681
|
+
'refractionRatio',
|
|
682
|
+
'wireframe',
|
|
683
|
+
'wireframeLinewidth',
|
|
684
|
+
'wireframeLinecap',
|
|
685
|
+
'wireframeLinejoin',
|
|
686
|
+
'fog',
|
|
687
|
+
'flatShading',
|
|
688
|
+
'alphaTest',
|
|
689
|
+
'alphaToCoverage',
|
|
690
|
+
'blendDst',
|
|
691
|
+
'blendDstAlpha',
|
|
692
|
+
'blendEquation',
|
|
693
|
+
'blendEquationAlpha',
|
|
694
|
+
'blending',
|
|
695
|
+
'blendSrc',
|
|
696
|
+
'blendSrcAlpha',
|
|
697
|
+
'clipIntersection',
|
|
698
|
+
'clippingPlanes',
|
|
699
|
+
'clipShadows',
|
|
700
|
+
'colorWrite',
|
|
701
|
+
'defines',
|
|
702
|
+
'depthFunc',
|
|
703
|
+
'depthTest',
|
|
704
|
+
'depthWrite',
|
|
705
|
+
'name',
|
|
706
|
+
'polygonOffset',
|
|
707
|
+
'polygonOffsetFactor',
|
|
708
|
+
'polygonOffsetUnits',
|
|
709
|
+
'precision',
|
|
710
|
+
'premultipliedAlpha',
|
|
711
|
+
'dithering',
|
|
712
|
+
'side',
|
|
713
|
+
'shadowSide',
|
|
714
|
+
'toneMapped',
|
|
715
|
+
'transparent',
|
|
716
|
+
'vertexColors',
|
|
717
|
+
'visible',
|
|
718
|
+
'format',
|
|
719
|
+
'stencilWrite',
|
|
720
|
+
'stencilFunc',
|
|
721
|
+
'stencilRef',
|
|
722
|
+
'stencilWriteMask',
|
|
723
|
+
'stencilFuncMask',
|
|
724
|
+
'stencilFail',
|
|
725
|
+
'stencilZFail',
|
|
726
|
+
'stencilZPass',
|
|
727
|
+
'userData',
|
|
728
|
+
];
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
// GENERATED - AngularThree v1.0.0
|
|
732
|
+
class NgtMeshPhysicalMaterial extends THREE.MeshPhysicalMaterial {
|
|
733
|
+
constructor() {
|
|
734
|
+
super();
|
|
735
|
+
return proxify(this, { attach: 'material' });
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
NgtMeshPhysicalMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshPhysicalMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
739
|
+
NgtMeshPhysicalMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshPhysicalMaterial, isStandalone: true, selector: "ngt-mesh-physical-material", inputs: { clearcoat: "clearcoat", clearcoatMap: "clearcoatMap", clearcoatRoughness: "clearcoatRoughness", clearcoatRoughnessMap: "clearcoatRoughnessMap", clearcoatNormalScale: "clearcoatNormalScale", clearcoatNormalMap: "clearcoatNormalMap", reflectivity: "reflectivity", ior: "ior", sheen: "sheen", sheenColor: "sheenColor", sheenRoughness: "sheenRoughness", transmission: "transmission", transmissionMap: "transmissionMap", attenuationDistance: "attenuationDistance", attenuationColor: "attenuationColor", specularIntensity: "specularIntensity", specularColor: "specularColor", specularIntensityMap: "specularIntensityMap", specularColorMap: "specularColorMap", color: "color", roughness: "roughness", metalness: "metalness", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", roughnessMap: "roughnessMap", metalnessMap: "metalnessMap", alphaMap: "alphaMap", envMap: "envMap", envMapIntensity: "envMapIntensity", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", fog: "fog", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshPhysicalMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshPhysicalMaterial, decorators: [{
|
|
741
|
+
type: Component,
|
|
742
|
+
args: [{
|
|
743
|
+
selector: 'ngt-mesh-physical-material',
|
|
744
|
+
standalone: true,
|
|
745
|
+
template: '<ng-content></ng-content>',
|
|
746
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
747
|
+
providers: [provideInstanceRef(NgtMeshPhysicalMaterial)],
|
|
748
|
+
inputs: [...getInputs$7()],
|
|
749
|
+
}]
|
|
750
|
+
}], ctorParameters: function () { return []; } });
|
|
751
|
+
function getInputs$7() {
|
|
752
|
+
return [
|
|
753
|
+
'clearcoat',
|
|
754
|
+
'clearcoatMap',
|
|
755
|
+
'clearcoatRoughness',
|
|
756
|
+
'clearcoatRoughnessMap',
|
|
757
|
+
'clearcoatNormalScale',
|
|
758
|
+
'clearcoatNormalMap',
|
|
759
|
+
'reflectivity',
|
|
760
|
+
'ior',
|
|
761
|
+
'sheen',
|
|
762
|
+
'sheenColor',
|
|
763
|
+
'sheenRoughness',
|
|
764
|
+
'transmission',
|
|
765
|
+
'transmissionMap',
|
|
766
|
+
'attenuationDistance',
|
|
767
|
+
'attenuationColor',
|
|
768
|
+
'specularIntensity',
|
|
769
|
+
'specularColor',
|
|
770
|
+
'specularIntensityMap',
|
|
771
|
+
'specularColorMap',
|
|
772
|
+
'color',
|
|
773
|
+
'roughness',
|
|
774
|
+
'metalness',
|
|
775
|
+
'map',
|
|
776
|
+
'lightMap',
|
|
777
|
+
'lightMapIntensity',
|
|
778
|
+
'aoMap',
|
|
779
|
+
'aoMapIntensity',
|
|
780
|
+
'emissive',
|
|
781
|
+
'emissiveIntensity',
|
|
782
|
+
'emissiveMap',
|
|
783
|
+
'bumpMap',
|
|
784
|
+
'bumpScale',
|
|
785
|
+
'normalMap',
|
|
786
|
+
'normalMapType',
|
|
787
|
+
'normalScale',
|
|
788
|
+
'displacementMap',
|
|
789
|
+
'displacementScale',
|
|
790
|
+
'displacementBias',
|
|
791
|
+
'roughnessMap',
|
|
792
|
+
'metalnessMap',
|
|
793
|
+
'alphaMap',
|
|
794
|
+
'envMap',
|
|
795
|
+
'envMapIntensity',
|
|
796
|
+
'wireframe',
|
|
797
|
+
'wireframeLinewidth',
|
|
798
|
+
'fog',
|
|
799
|
+
'flatShading',
|
|
800
|
+
'alphaTest',
|
|
801
|
+
'alphaToCoverage',
|
|
802
|
+
'blendDst',
|
|
803
|
+
'blendDstAlpha',
|
|
804
|
+
'blendEquation',
|
|
805
|
+
'blendEquationAlpha',
|
|
806
|
+
'blending',
|
|
807
|
+
'blendSrc',
|
|
808
|
+
'blendSrcAlpha',
|
|
809
|
+
'clipIntersection',
|
|
810
|
+
'clippingPlanes',
|
|
811
|
+
'clipShadows',
|
|
812
|
+
'colorWrite',
|
|
813
|
+
'defines',
|
|
814
|
+
'depthFunc',
|
|
815
|
+
'depthTest',
|
|
816
|
+
'depthWrite',
|
|
817
|
+
'name',
|
|
818
|
+
'opacity',
|
|
819
|
+
'polygonOffset',
|
|
820
|
+
'polygonOffsetFactor',
|
|
821
|
+
'polygonOffsetUnits',
|
|
822
|
+
'precision',
|
|
823
|
+
'premultipliedAlpha',
|
|
824
|
+
'dithering',
|
|
825
|
+
'side',
|
|
826
|
+
'shadowSide',
|
|
827
|
+
'toneMapped',
|
|
828
|
+
'transparent',
|
|
829
|
+
'vertexColors',
|
|
830
|
+
'visible',
|
|
831
|
+
'format',
|
|
832
|
+
'stencilWrite',
|
|
833
|
+
'stencilFunc',
|
|
834
|
+
'stencilRef',
|
|
835
|
+
'stencilWriteMask',
|
|
836
|
+
'stencilFuncMask',
|
|
837
|
+
'stencilFail',
|
|
838
|
+
'stencilZFail',
|
|
839
|
+
'stencilZPass',
|
|
840
|
+
'userData',
|
|
841
|
+
];
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
// GENERATED - AngularThree v1.0.0
|
|
845
|
+
class NgtMeshStandardMaterial extends THREE.MeshStandardMaterial {
|
|
846
|
+
constructor() {
|
|
847
|
+
super();
|
|
848
|
+
return proxify(this, { attach: 'material' });
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
NgtMeshStandardMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshStandardMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
852
|
+
NgtMeshStandardMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshStandardMaterial, isStandalone: true, selector: "ngt-mesh-standard-material", inputs: { color: "color", roughness: "roughness", metalness: "metalness", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", roughnessMap: "roughnessMap", metalnessMap: "metalnessMap", alphaMap: "alphaMap", envMap: "envMap", envMapIntensity: "envMapIntensity", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", fog: "fog", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshStandardMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshStandardMaterial, decorators: [{
|
|
854
|
+
type: Component,
|
|
855
|
+
args: [{
|
|
856
|
+
selector: 'ngt-mesh-standard-material',
|
|
857
|
+
standalone: true,
|
|
858
|
+
template: '<ng-content></ng-content>',
|
|
859
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
860
|
+
providers: [provideInstanceRef(NgtMeshStandardMaterial)],
|
|
861
|
+
inputs: [...getInputs$6()],
|
|
862
|
+
}]
|
|
863
|
+
}], ctorParameters: function () { return []; } });
|
|
864
|
+
function getInputs$6() {
|
|
865
|
+
return [
|
|
866
|
+
'color',
|
|
867
|
+
'roughness',
|
|
868
|
+
'metalness',
|
|
869
|
+
'map',
|
|
870
|
+
'lightMap',
|
|
871
|
+
'lightMapIntensity',
|
|
872
|
+
'aoMap',
|
|
873
|
+
'aoMapIntensity',
|
|
874
|
+
'emissive',
|
|
875
|
+
'emissiveIntensity',
|
|
876
|
+
'emissiveMap',
|
|
877
|
+
'bumpMap',
|
|
878
|
+
'bumpScale',
|
|
879
|
+
'normalMap',
|
|
880
|
+
'normalMapType',
|
|
881
|
+
'normalScale',
|
|
882
|
+
'displacementMap',
|
|
883
|
+
'displacementScale',
|
|
884
|
+
'displacementBias',
|
|
885
|
+
'roughnessMap',
|
|
886
|
+
'metalnessMap',
|
|
887
|
+
'alphaMap',
|
|
888
|
+
'envMap',
|
|
889
|
+
'envMapIntensity',
|
|
890
|
+
'wireframe',
|
|
891
|
+
'wireframeLinewidth',
|
|
892
|
+
'fog',
|
|
893
|
+
'flatShading',
|
|
894
|
+
'alphaTest',
|
|
895
|
+
'alphaToCoverage',
|
|
896
|
+
'blendDst',
|
|
897
|
+
'blendDstAlpha',
|
|
898
|
+
'blendEquation',
|
|
899
|
+
'blendEquationAlpha',
|
|
900
|
+
'blending',
|
|
901
|
+
'blendSrc',
|
|
902
|
+
'blendSrcAlpha',
|
|
903
|
+
'clipIntersection',
|
|
904
|
+
'clippingPlanes',
|
|
905
|
+
'clipShadows',
|
|
906
|
+
'colorWrite',
|
|
907
|
+
'defines',
|
|
908
|
+
'depthFunc',
|
|
909
|
+
'depthTest',
|
|
910
|
+
'depthWrite',
|
|
911
|
+
'name',
|
|
912
|
+
'opacity',
|
|
913
|
+
'polygonOffset',
|
|
914
|
+
'polygonOffsetFactor',
|
|
915
|
+
'polygonOffsetUnits',
|
|
916
|
+
'precision',
|
|
917
|
+
'premultipliedAlpha',
|
|
918
|
+
'dithering',
|
|
919
|
+
'side',
|
|
920
|
+
'shadowSide',
|
|
921
|
+
'toneMapped',
|
|
922
|
+
'transparent',
|
|
923
|
+
'vertexColors',
|
|
924
|
+
'visible',
|
|
925
|
+
'format',
|
|
926
|
+
'stencilWrite',
|
|
927
|
+
'stencilFunc',
|
|
928
|
+
'stencilRef',
|
|
929
|
+
'stencilWriteMask',
|
|
930
|
+
'stencilFuncMask',
|
|
931
|
+
'stencilFail',
|
|
932
|
+
'stencilZFail',
|
|
933
|
+
'stencilZPass',
|
|
934
|
+
'userData',
|
|
935
|
+
];
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
// GENERATED - AngularThree v1.0.0
|
|
939
|
+
class NgtMeshToonMaterial extends THREE.MeshToonMaterial {
|
|
940
|
+
constructor() {
|
|
941
|
+
super();
|
|
942
|
+
return proxify(this, { attach: 'material' });
|
|
943
|
+
}
|
|
944
|
+
}
|
|
945
|
+
NgtMeshToonMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshToonMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
946
|
+
NgtMeshToonMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshToonMaterial, isStandalone: true, selector: "ngt-mesh-toon-material", inputs: { color: "color", opacity: "opacity", gradientMap: "gradientMap", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", alphaMap: "alphaMap", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", wireframeLinecap: "wireframeLinecap", wireframeLinejoin: "wireframeLinejoin", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshToonMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
947
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshToonMaterial, decorators: [{
|
|
948
|
+
type: Component,
|
|
949
|
+
args: [{
|
|
950
|
+
selector: 'ngt-mesh-toon-material',
|
|
951
|
+
standalone: true,
|
|
952
|
+
template: '<ng-content></ng-content>',
|
|
953
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
954
|
+
providers: [provideInstanceRef(NgtMeshToonMaterial)],
|
|
955
|
+
inputs: [...getInputs$5()],
|
|
956
|
+
}]
|
|
957
|
+
}], ctorParameters: function () { return []; } });
|
|
958
|
+
function getInputs$5() {
|
|
959
|
+
return [
|
|
960
|
+
'color',
|
|
961
|
+
'opacity',
|
|
962
|
+
'gradientMap',
|
|
963
|
+
'map',
|
|
964
|
+
'lightMap',
|
|
965
|
+
'lightMapIntensity',
|
|
966
|
+
'aoMap',
|
|
967
|
+
'aoMapIntensity',
|
|
968
|
+
'emissive',
|
|
969
|
+
'emissiveIntensity',
|
|
970
|
+
'emissiveMap',
|
|
971
|
+
'bumpMap',
|
|
972
|
+
'bumpScale',
|
|
973
|
+
'normalMap',
|
|
974
|
+
'normalMapType',
|
|
975
|
+
'normalScale',
|
|
976
|
+
'displacementMap',
|
|
977
|
+
'displacementScale',
|
|
978
|
+
'displacementBias',
|
|
979
|
+
'alphaMap',
|
|
980
|
+
'wireframe',
|
|
981
|
+
'wireframeLinewidth',
|
|
982
|
+
'wireframeLinecap',
|
|
983
|
+
'wireframeLinejoin',
|
|
984
|
+
'fog',
|
|
985
|
+
'alphaTest',
|
|
986
|
+
'alphaToCoverage',
|
|
987
|
+
'blendDst',
|
|
988
|
+
'blendDstAlpha',
|
|
989
|
+
'blendEquation',
|
|
990
|
+
'blendEquationAlpha',
|
|
991
|
+
'blending',
|
|
992
|
+
'blendSrc',
|
|
993
|
+
'blendSrcAlpha',
|
|
994
|
+
'clipIntersection',
|
|
995
|
+
'clippingPlanes',
|
|
996
|
+
'clipShadows',
|
|
997
|
+
'colorWrite',
|
|
998
|
+
'defines',
|
|
999
|
+
'depthFunc',
|
|
1000
|
+
'depthTest',
|
|
1001
|
+
'depthWrite',
|
|
1002
|
+
'name',
|
|
1003
|
+
'polygonOffset',
|
|
1004
|
+
'polygonOffsetFactor',
|
|
1005
|
+
'polygonOffsetUnits',
|
|
1006
|
+
'precision',
|
|
1007
|
+
'premultipliedAlpha',
|
|
1008
|
+
'dithering',
|
|
1009
|
+
'side',
|
|
1010
|
+
'shadowSide',
|
|
1011
|
+
'toneMapped',
|
|
1012
|
+
'transparent',
|
|
1013
|
+
'vertexColors',
|
|
1014
|
+
'visible',
|
|
1015
|
+
'format',
|
|
1016
|
+
'stencilWrite',
|
|
1017
|
+
'stencilFunc',
|
|
1018
|
+
'stencilRef',
|
|
1019
|
+
'stencilWriteMask',
|
|
1020
|
+
'stencilFuncMask',
|
|
1021
|
+
'stencilFail',
|
|
1022
|
+
'stencilZFail',
|
|
1023
|
+
'stencilZPass',
|
|
1024
|
+
'userData',
|
|
1025
|
+
];
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
// GENERATED - AngularThree v1.0.0
|
|
1029
|
+
class NgtPointsMaterial extends THREE.PointsMaterial {
|
|
1030
|
+
constructor() {
|
|
1031
|
+
super();
|
|
1032
|
+
return proxify(this, { attach: 'material' });
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
NgtPointsMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPointsMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1036
|
+
NgtPointsMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPointsMaterial, isStandalone: true, selector: "ngt-points-material", inputs: { color: "color", map: "map", alphaMap: "alphaMap", size: "size", sizeAttenuation: "sizeAttenuation", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtPointsMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
1037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPointsMaterial, decorators: [{
|
|
1038
|
+
type: Component,
|
|
1039
|
+
args: [{
|
|
1040
|
+
selector: 'ngt-points-material',
|
|
1041
|
+
standalone: true,
|
|
1042
|
+
template: '<ng-content></ng-content>',
|
|
1043
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
1044
|
+
providers: [provideInstanceRef(NgtPointsMaterial)],
|
|
1045
|
+
inputs: [...getInputs$4()],
|
|
1046
|
+
}]
|
|
1047
|
+
}], ctorParameters: function () { return []; } });
|
|
1048
|
+
function getInputs$4() {
|
|
1049
|
+
return [
|
|
1050
|
+
'color',
|
|
1051
|
+
'map',
|
|
1052
|
+
'alphaMap',
|
|
1053
|
+
'size',
|
|
1054
|
+
'sizeAttenuation',
|
|
1055
|
+
'fog',
|
|
1056
|
+
'alphaTest',
|
|
1057
|
+
'alphaToCoverage',
|
|
1058
|
+
'blendDst',
|
|
1059
|
+
'blendDstAlpha',
|
|
1060
|
+
'blendEquation',
|
|
1061
|
+
'blendEquationAlpha',
|
|
1062
|
+
'blending',
|
|
1063
|
+
'blendSrc',
|
|
1064
|
+
'blendSrcAlpha',
|
|
1065
|
+
'clipIntersection',
|
|
1066
|
+
'clippingPlanes',
|
|
1067
|
+
'clipShadows',
|
|
1068
|
+
'colorWrite',
|
|
1069
|
+
'defines',
|
|
1070
|
+
'depthFunc',
|
|
1071
|
+
'depthTest',
|
|
1072
|
+
'depthWrite',
|
|
1073
|
+
'name',
|
|
1074
|
+
'opacity',
|
|
1075
|
+
'polygonOffset',
|
|
1076
|
+
'polygonOffsetFactor',
|
|
1077
|
+
'polygonOffsetUnits',
|
|
1078
|
+
'precision',
|
|
1079
|
+
'premultipliedAlpha',
|
|
1080
|
+
'dithering',
|
|
1081
|
+
'side',
|
|
1082
|
+
'shadowSide',
|
|
1083
|
+
'toneMapped',
|
|
1084
|
+
'transparent',
|
|
1085
|
+
'vertexColors',
|
|
1086
|
+
'visible',
|
|
1087
|
+
'format',
|
|
1088
|
+
'stencilWrite',
|
|
1089
|
+
'stencilFunc',
|
|
1090
|
+
'stencilRef',
|
|
1091
|
+
'stencilWriteMask',
|
|
1092
|
+
'stencilFuncMask',
|
|
1093
|
+
'stencilFail',
|
|
1094
|
+
'stencilZFail',
|
|
1095
|
+
'stencilZPass',
|
|
1096
|
+
'userData',
|
|
1097
|
+
];
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
// GENERATED - AngularThree v1.0.0
|
|
1101
|
+
class NgtRawShaderMaterial extends THREE.RawShaderMaterial {
|
|
1102
|
+
constructor() {
|
|
1103
|
+
super();
|
|
1104
|
+
return proxify(this, { attach: 'material' });
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
NgtRawShaderMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRawShaderMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1108
|
+
NgtRawShaderMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtRawShaderMaterial, isStandalone: true, selector: "ngt-raw-shader-material", inputs: { uniforms: "uniforms", vertexShader: "vertexShader", fragmentShader: "fragmentShader", linewidth: "linewidth", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", lights: "lights", clipping: "clipping", fog: "fog", extensions: "extensions", glslVersion: "glslVersion", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtRawShaderMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
1109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRawShaderMaterial, decorators: [{
|
|
1110
|
+
type: Component,
|
|
1111
|
+
args: [{
|
|
1112
|
+
selector: 'ngt-raw-shader-material',
|
|
1113
|
+
standalone: true,
|
|
1114
|
+
template: '<ng-content></ng-content>',
|
|
1115
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
1116
|
+
providers: [provideInstanceRef(NgtRawShaderMaterial)],
|
|
1117
|
+
inputs: [...getInputs$3()],
|
|
1118
|
+
}]
|
|
1119
|
+
}], ctorParameters: function () { return []; } });
|
|
1120
|
+
function getInputs$3() {
|
|
1121
|
+
return [
|
|
1122
|
+
'uniforms',
|
|
1123
|
+
'vertexShader',
|
|
1124
|
+
'fragmentShader',
|
|
1125
|
+
'linewidth',
|
|
1126
|
+
'wireframe',
|
|
1127
|
+
'wireframeLinewidth',
|
|
1128
|
+
'lights',
|
|
1129
|
+
'clipping',
|
|
1130
|
+
'fog',
|
|
1131
|
+
'extensions',
|
|
1132
|
+
'glslVersion',
|
|
1133
|
+
'alphaTest',
|
|
1134
|
+
'alphaToCoverage',
|
|
1135
|
+
'blendDst',
|
|
1136
|
+
'blendDstAlpha',
|
|
1137
|
+
'blendEquation',
|
|
1138
|
+
'blendEquationAlpha',
|
|
1139
|
+
'blending',
|
|
1140
|
+
'blendSrc',
|
|
1141
|
+
'blendSrcAlpha',
|
|
1142
|
+
'clipIntersection',
|
|
1143
|
+
'clippingPlanes',
|
|
1144
|
+
'clipShadows',
|
|
1145
|
+
'colorWrite',
|
|
1146
|
+
'defines',
|
|
1147
|
+
'depthFunc',
|
|
1148
|
+
'depthTest',
|
|
1149
|
+
'depthWrite',
|
|
1150
|
+
'name',
|
|
1151
|
+
'opacity',
|
|
1152
|
+
'polygonOffset',
|
|
1153
|
+
'polygonOffsetFactor',
|
|
1154
|
+
'polygonOffsetUnits',
|
|
1155
|
+
'precision',
|
|
1156
|
+
'premultipliedAlpha',
|
|
1157
|
+
'dithering',
|
|
1158
|
+
'side',
|
|
1159
|
+
'shadowSide',
|
|
1160
|
+
'toneMapped',
|
|
1161
|
+
'transparent',
|
|
1162
|
+
'vertexColors',
|
|
1163
|
+
'visible',
|
|
1164
|
+
'format',
|
|
1165
|
+
'stencilWrite',
|
|
1166
|
+
'stencilFunc',
|
|
1167
|
+
'stencilRef',
|
|
1168
|
+
'stencilWriteMask',
|
|
1169
|
+
'stencilFuncMask',
|
|
1170
|
+
'stencilFail',
|
|
1171
|
+
'stencilZFail',
|
|
1172
|
+
'stencilZPass',
|
|
1173
|
+
'userData',
|
|
1174
|
+
];
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
// GENERATED - AngularThree v1.0.0
|
|
1178
|
+
class NgtShaderMaterial extends THREE.ShaderMaterial {
|
|
1179
|
+
constructor() {
|
|
1180
|
+
super();
|
|
1181
|
+
return proxify(this, { attach: 'material' });
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
NgtShaderMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShaderMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1185
|
+
NgtShaderMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtShaderMaterial, isStandalone: true, selector: "ngt-shader-material", inputs: { uniforms: "uniforms", vertexShader: "vertexShader", fragmentShader: "fragmentShader", linewidth: "linewidth", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", lights: "lights", clipping: "clipping", fog: "fog", extensions: "extensions", glslVersion: "glslVersion", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtShaderMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
1186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShaderMaterial, decorators: [{
|
|
1187
|
+
type: Component,
|
|
1188
|
+
args: [{
|
|
1189
|
+
selector: 'ngt-shader-material',
|
|
1190
|
+
standalone: true,
|
|
1191
|
+
template: '<ng-content></ng-content>',
|
|
1192
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
1193
|
+
providers: [provideInstanceRef(NgtShaderMaterial)],
|
|
1194
|
+
inputs: [...getInputs$2()],
|
|
1195
|
+
}]
|
|
1196
|
+
}], ctorParameters: function () { return []; } });
|
|
1197
|
+
function getInputs$2() {
|
|
1198
|
+
return [
|
|
1199
|
+
'uniforms',
|
|
1200
|
+
'vertexShader',
|
|
1201
|
+
'fragmentShader',
|
|
1202
|
+
'linewidth',
|
|
1203
|
+
'wireframe',
|
|
1204
|
+
'wireframeLinewidth',
|
|
1205
|
+
'lights',
|
|
1206
|
+
'clipping',
|
|
1207
|
+
'fog',
|
|
1208
|
+
'extensions',
|
|
1209
|
+
'glslVersion',
|
|
1210
|
+
'alphaTest',
|
|
1211
|
+
'alphaToCoverage',
|
|
1212
|
+
'blendDst',
|
|
1213
|
+
'blendDstAlpha',
|
|
1214
|
+
'blendEquation',
|
|
1215
|
+
'blendEquationAlpha',
|
|
1216
|
+
'blending',
|
|
1217
|
+
'blendSrc',
|
|
1218
|
+
'blendSrcAlpha',
|
|
1219
|
+
'clipIntersection',
|
|
1220
|
+
'clippingPlanes',
|
|
1221
|
+
'clipShadows',
|
|
1222
|
+
'colorWrite',
|
|
1223
|
+
'defines',
|
|
1224
|
+
'depthFunc',
|
|
1225
|
+
'depthTest',
|
|
1226
|
+
'depthWrite',
|
|
1227
|
+
'name',
|
|
1228
|
+
'opacity',
|
|
1229
|
+
'polygonOffset',
|
|
1230
|
+
'polygonOffsetFactor',
|
|
1231
|
+
'polygonOffsetUnits',
|
|
1232
|
+
'precision',
|
|
1233
|
+
'premultipliedAlpha',
|
|
1234
|
+
'dithering',
|
|
1235
|
+
'side',
|
|
1236
|
+
'shadowSide',
|
|
1237
|
+
'toneMapped',
|
|
1238
|
+
'transparent',
|
|
1239
|
+
'vertexColors',
|
|
1240
|
+
'visible',
|
|
1241
|
+
'format',
|
|
1242
|
+
'stencilWrite',
|
|
1243
|
+
'stencilFunc',
|
|
1244
|
+
'stencilRef',
|
|
1245
|
+
'stencilWriteMask',
|
|
1246
|
+
'stencilFuncMask',
|
|
1247
|
+
'stencilFail',
|
|
1248
|
+
'stencilZFail',
|
|
1249
|
+
'stencilZPass',
|
|
1250
|
+
'userData',
|
|
1251
|
+
];
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
// GENERATED - AngularThree v1.0.0
|
|
1255
|
+
class NgtShadowMaterial extends THREE.ShadowMaterial {
|
|
1256
|
+
constructor() {
|
|
1257
|
+
super();
|
|
1258
|
+
return proxify(this, { attach: 'material' });
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
NgtShadowMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShadowMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1262
|
+
NgtShadowMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtShadowMaterial, isStandalone: true, selector: "ngt-shadow-material", inputs: { color: "color", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtShadowMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
1263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShadowMaterial, decorators: [{
|
|
1264
|
+
type: Component,
|
|
1265
|
+
args: [{
|
|
1266
|
+
selector: 'ngt-shadow-material',
|
|
1267
|
+
standalone: true,
|
|
1268
|
+
template: '<ng-content></ng-content>',
|
|
1269
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
1270
|
+
providers: [provideInstanceRef(NgtShadowMaterial)],
|
|
1271
|
+
inputs: [...getInputs$1()],
|
|
1272
|
+
}]
|
|
1273
|
+
}], ctorParameters: function () { return []; } });
|
|
1274
|
+
function getInputs$1() {
|
|
1275
|
+
return [
|
|
1276
|
+
'color',
|
|
1277
|
+
'fog',
|
|
1278
|
+
'alphaTest',
|
|
1279
|
+
'alphaToCoverage',
|
|
1280
|
+
'blendDst',
|
|
1281
|
+
'blendDstAlpha',
|
|
1282
|
+
'blendEquation',
|
|
1283
|
+
'blendEquationAlpha',
|
|
1284
|
+
'blending',
|
|
1285
|
+
'blendSrc',
|
|
1286
|
+
'blendSrcAlpha',
|
|
1287
|
+
'clipIntersection',
|
|
1288
|
+
'clippingPlanes',
|
|
1289
|
+
'clipShadows',
|
|
1290
|
+
'colorWrite',
|
|
1291
|
+
'defines',
|
|
1292
|
+
'depthFunc',
|
|
1293
|
+
'depthTest',
|
|
1294
|
+
'depthWrite',
|
|
1295
|
+
'name',
|
|
1296
|
+
'opacity',
|
|
1297
|
+
'polygonOffset',
|
|
1298
|
+
'polygonOffsetFactor',
|
|
1299
|
+
'polygonOffsetUnits',
|
|
1300
|
+
'precision',
|
|
1301
|
+
'premultipliedAlpha',
|
|
1302
|
+
'dithering',
|
|
1303
|
+
'side',
|
|
1304
|
+
'shadowSide',
|
|
1305
|
+
'toneMapped',
|
|
1306
|
+
'transparent',
|
|
1307
|
+
'vertexColors',
|
|
1308
|
+
'visible',
|
|
1309
|
+
'format',
|
|
1310
|
+
'stencilWrite',
|
|
1311
|
+
'stencilFunc',
|
|
1312
|
+
'stencilRef',
|
|
1313
|
+
'stencilWriteMask',
|
|
1314
|
+
'stencilFuncMask',
|
|
1315
|
+
'stencilFail',
|
|
1316
|
+
'stencilZFail',
|
|
1317
|
+
'stencilZPass',
|
|
1318
|
+
'userData',
|
|
1319
|
+
];
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
// GENERATED - AngularThree v1.0.0
|
|
1323
|
+
class NgtSpriteMaterial extends THREE.SpriteMaterial {
|
|
1324
|
+
constructor() {
|
|
1325
|
+
super();
|
|
1326
|
+
return proxify(this, { attach: 'material' });
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
NgtSpriteMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSpriteMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1330
|
+
NgtSpriteMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSpriteMaterial, isStandalone: true, selector: "ngt-sprite-material", inputs: { color: "color", map: "map", alphaMap: "alphaMap", rotation: "rotation", sizeAttenuation: "sizeAttenuation", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtSpriteMaterial)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
1331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSpriteMaterial, decorators: [{
|
|
1332
|
+
type: Component,
|
|
1333
|
+
args: [{
|
|
1334
|
+
selector: 'ngt-sprite-material',
|
|
1335
|
+
standalone: true,
|
|
1336
|
+
template: '<ng-content></ng-content>',
|
|
1337
|
+
hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
|
|
1338
|
+
providers: [provideInstanceRef(NgtSpriteMaterial)],
|
|
1339
|
+
inputs: [...getInputs()],
|
|
1340
|
+
}]
|
|
1341
|
+
}], ctorParameters: function () { return []; } });
|
|
1342
|
+
function getInputs() {
|
|
1343
|
+
return [
|
|
1344
|
+
'color',
|
|
1345
|
+
'map',
|
|
1346
|
+
'alphaMap',
|
|
1347
|
+
'rotation',
|
|
1348
|
+
'sizeAttenuation',
|
|
1349
|
+
'fog',
|
|
1350
|
+
'alphaTest',
|
|
1351
|
+
'alphaToCoverage',
|
|
1352
|
+
'blendDst',
|
|
1353
|
+
'blendDstAlpha',
|
|
1354
|
+
'blendEquation',
|
|
1355
|
+
'blendEquationAlpha',
|
|
1356
|
+
'blending',
|
|
1357
|
+
'blendSrc',
|
|
1358
|
+
'blendSrcAlpha',
|
|
1359
|
+
'clipIntersection',
|
|
1360
|
+
'clippingPlanes',
|
|
1361
|
+
'clipShadows',
|
|
1362
|
+
'colorWrite',
|
|
1363
|
+
'defines',
|
|
1364
|
+
'depthFunc',
|
|
1365
|
+
'depthTest',
|
|
1366
|
+
'depthWrite',
|
|
1367
|
+
'name',
|
|
1368
|
+
'opacity',
|
|
1369
|
+
'polygonOffset',
|
|
1370
|
+
'polygonOffsetFactor',
|
|
1371
|
+
'polygonOffsetUnits',
|
|
1372
|
+
'precision',
|
|
1373
|
+
'premultipliedAlpha',
|
|
1374
|
+
'dithering',
|
|
1375
|
+
'side',
|
|
1376
|
+
'shadowSide',
|
|
1377
|
+
'toneMapped',
|
|
1378
|
+
'transparent',
|
|
1379
|
+
'vertexColors',
|
|
1380
|
+
'visible',
|
|
1381
|
+
'format',
|
|
1382
|
+
'stencilWrite',
|
|
1383
|
+
'stencilFunc',
|
|
1384
|
+
'stencilRef',
|
|
1385
|
+
'stencilWriteMask',
|
|
1386
|
+
'stencilFuncMask',
|
|
1387
|
+
'stencilFail',
|
|
1388
|
+
'stencilZFail',
|
|
1389
|
+
'stencilZPass',
|
|
1390
|
+
'userData',
|
|
1391
|
+
];
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
// GENERATED - AngularThree v1.0.0
|
|
1395
|
+
|
|
1396
|
+
/**
|
|
1397
|
+
* Generated bundle index. Do not edit.
|
|
1398
|
+
*/
|
|
1399
|
+
|
|
1400
|
+
export { NgtLineBasicMaterial, NgtLineDashedMaterial, NgtMeshBasicMaterial, NgtMeshDepthMaterial, NgtMeshDistanceMaterial, NgtMeshLambertMaterial, NgtMeshMatcapMaterial, NgtMeshNormalMaterial, NgtMeshPhongMaterial, NgtMeshPhysicalMaterial, NgtMeshStandardMaterial, NgtMeshToonMaterial, NgtPointsMaterial, NgtRawShaderMaterial, NgtShaderMaterial, NgtShadowMaterial, NgtSpriteMaterial };
|
|
1401
|
+
//# sourceMappingURL=angular-three-materials.mjs.map
|
|
1402
|
+
//# sourceMappingURL=angular-three-materials.mjs.map
|