angular-three-postprocessing 1.6.1 → 2.0.0-beta.10
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/README.md +4 -12
- package/esm2022/angular-three-postprocessing.mjs +1 -1
- package/esm2022/index.mjs +2 -1
- package/esm2022/lib/effect-composer.mjs +180 -173
- package/esm2022/lib/effect.mjs +62 -64
- package/esm2022/lib/effects/bloom/bloom.mjs +33 -0
- package/esm2022/lib/effects/brightness-contrast/brightness-contrast.mjs +29 -0
- package/esm2022/lib/effects/color-depth/color-depth.mjs +29 -0
- package/esm2022/lib/effects/depth/depth.mjs +29 -0
- package/esm2022/lib/effects/dot-screen/dot-screen.mjs +29 -0
- package/esm2022/lib/effects/hue-saturation/hue-saturation.mjs +29 -0
- package/esm2022/lib/effects/index.mjs +18 -0
- package/esm2022/lib/effects/lut/lut.mjs +70 -0
- package/esm2022/lib/effects/noise/noise.mjs +33 -0
- package/esm2022/lib/effects/pixelation/pixelation.mjs +33 -0
- package/esm2022/lib/effects/scanline/scanline.mjs +33 -0
- package/esm2022/lib/effects/sepia/sepia.mjs +29 -0
- package/esm2022/lib/effects/shock-wave/shock-wave.mjs +29 -0
- package/esm2022/lib/effects/smaa/smaa.mjs +29 -0
- package/esm2022/lib/effects/ssao/ssao.mjs +213 -0
- package/esm2022/lib/effects/tilt-shift/tilt-shift.mjs +33 -0
- package/esm2022/lib/effects/tone-mapping/tone-mapping.mjs +29 -0
- package/esm2022/lib/effects/vignette/vignette.mjs +29 -0
- package/fesm2022/angular-three-postprocessing.mjs +892 -229
- package/fesm2022/angular-three-postprocessing.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/effect-composer.d.ts +89 -28
- package/lib/effect.d.ts +23 -18
- package/lib/effects/bloom/bloom.d.ts +13 -0
- package/lib/effects/brightness-contrast/brightness-contrast.d.ts +15 -0
- package/{effects/lib → lib/effects}/color-depth/color-depth.d.ts +9 -3
- package/{effects/lib → lib/effects}/depth/depth.d.ts +9 -3
- package/lib/effects/dot-screen/dot-screen.d.ts +15 -0
- package/lib/effects/hue-saturation/hue-saturation.d.ts +15 -0
- package/lib/effects/index.d.ts +17 -0
- package/lib/effects/lut/lut.d.ts +29 -0
- package/lib/effects/noise/noise.d.ts +15 -0
- package/lib/effects/pixelation/pixelation.d.ts +20 -0
- package/lib/effects/scanline/scanline.d.ts +15 -0
- package/{effects/lib → lib/effects}/sepia/sepia.d.ts +9 -3
- package/lib/effects/shock-wave/shock-wave.d.ts +17 -0
- package/lib/effects/smaa/smaa.d.ts +16 -0
- package/lib/effects/ssao/ssao.d.ts +42 -0
- package/lib/effects/tilt-shift/tilt-shift.d.ts +23 -0
- package/lib/effects/tone-mapping/tone-mapping.d.ts +22 -0
- package/lib/effects/vignette/vignette.d.ts +17 -0
- package/package.json +7 -26
- package/effects/README.md +0 -3
- package/effects/index.d.ts +0 -14
- package/effects/lib/bloom/bloom.d.ts +0 -9
- package/effects/lib/brightness-contrast/brightness-contrast.d.ts +0 -8
- package/effects/lib/dot-screen/dot-screen.d.ts +0 -8
- package/effects/lib/hue-saturation/hue-saturation.d.ts +0 -8
- package/effects/lib/lut/lut.d.ts +0 -13
- package/effects/lib/noise/noise.d.ts +0 -9
- package/effects/lib/scanline/scanline.d.ts +0 -9
- package/effects/lib/ssao/ssao.d.ts +0 -13
- package/effects/lib/tilt-shift/tilt-shift.d.ts +0 -9
- package/effects/lib/tone-mapping/tone-mapping.d.ts +0 -8
- package/effects/lib/vignette/vignette.d.ts +0 -8
- package/esm2022/effects/angular-three-postprocessing-effects.mjs +0 -5
- package/esm2022/effects/index.mjs +0 -15
- package/esm2022/effects/lib/bloom/bloom.mjs +0 -44
- package/esm2022/effects/lib/brightness-contrast/brightness-contrast.mjs +0 -29
- package/esm2022/effects/lib/color-depth/color-depth.mjs +0 -29
- package/esm2022/effects/lib/depth/depth.mjs +0 -29
- package/esm2022/effects/lib/dot-screen/dot-screen.mjs +0 -29
- package/esm2022/effects/lib/hue-saturation/hue-saturation.mjs +0 -29
- package/esm2022/effects/lib/lut/lut.mjs +0 -60
- package/esm2022/effects/lib/noise/noise.mjs +0 -33
- package/esm2022/effects/lib/scanline/scanline.mjs +0 -33
- package/esm2022/effects/lib/sepia/sepia.mjs +0 -29
- package/esm2022/effects/lib/ssao/ssao.mjs +0 -102
- package/esm2022/effects/lib/tilt-shift/tilt-shift.mjs +0 -43
- package/esm2022/effects/lib/tone-mapping/tone-mapping.mjs +0 -39
- package/esm2022/effects/lib/vignette/vignette.mjs +0 -29
- package/esm2022/selection/angular-three-postprocessing-selection.mjs +0 -5
- package/esm2022/selection/index.mjs +0 -3
- package/esm2022/selection/lib/select.mjs +0 -69
- package/esm2022/selection/lib/selection.mjs +0 -44
- package/fesm2022/angular-three-postprocessing-effects.mjs +0 -484
- package/fesm2022/angular-three-postprocessing-effects.mjs.map +0 -1
- package/fesm2022/angular-three-postprocessing-selection.mjs +0 -114
- package/fesm2022/angular-three-postprocessing-selection.mjs.map +0 -1
- package/plugin/README.md +0 -11
- package/plugin/generators.json +0 -19
- package/plugin/package.json +0 -9
- package/plugin/src/generators/init/compat.d.ts +0 -2
- package/plugin/src/generators/init/compat.js +0 -6
- package/plugin/src/generators/init/compat.js.map +0 -1
- package/plugin/src/generators/init/init.d.ts +0 -4
- package/plugin/src/generators/init/init.js +0 -26
- package/plugin/src/generators/init/init.js.map +0 -1
- package/plugin/src/generators/init/schema.json +0 -6
- package/plugin/src/index.d.ts +0 -1
- package/plugin/src/index.js +0 -6
- package/plugin/src/index.js.map +0 -1
- package/selection/README.md +0 -3
- package/selection/index.d.ts +0 -2
- package/selection/lib/select.d.ts +0 -14
- package/selection/lib/selection.d.ts +0 -18
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
1
|
import { SepiaEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect, type NgtpEffectState } from '../../effect';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'ngtp-sepia': {
|
|
7
|
+
intensity?: number;
|
|
8
|
+
} & NgtpEffectState;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
4
11
|
export declare class NgtpSepia extends NgtpEffect<SepiaEffect> {
|
|
5
|
-
get effectConstructor(): typeof SepiaEffect;
|
|
6
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpSepia, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSepia, "ngtp-sepia", never, {
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSepia, "ngtp-sepia", never, {}, {}, never, ["*"], true, never>;
|
|
8
14
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ShockWaveEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect, type NgtpEffectState } from '../../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'ngtp-shock-wave': {
|
|
7
|
+
speed?: number;
|
|
8
|
+
maxRadius?: number;
|
|
9
|
+
waveSize?: number;
|
|
10
|
+
amplitude?: number;
|
|
11
|
+
} & NgtpEffectState;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export declare class NgtpShockWave extends NgtpEffect<ShockWaveEffect> {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpShockWave, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpShockWave, "ngtp-shock-wave", never, {}, {}, never, ["*"], true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EdgeDetectionMode, PredicationMode, SMAAEffect, SMAAPreset } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect, NgtpEffectState } from '../../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'ngtp-SMAA': {
|
|
7
|
+
preset?: SMAAPreset;
|
|
8
|
+
edgeDetectionMode?: EdgeDetectionMode;
|
|
9
|
+
predicationMode?: PredicationMode;
|
|
10
|
+
} & NgtpEffectState;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
export declare class NgtpSMAA extends NgtpEffect<SMAAEffect> {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpSMAA, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSMAA, "ngtp-SMAA", never, {}, {}, never, ["*"], true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { BlendFunction, SSAOEffect } from 'postprocessing';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type NgtpSSAOState = NonNullable<ConstructorParameters<typeof SSAOEffect>[2]>;
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'ngtp-SSAO': NgtpSSAOState;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export declare class NgtpSSAO {
|
|
10
|
+
private inputs;
|
|
11
|
+
effectRef: import("angular-three").NgtInjectedRef<SSAOEffect>;
|
|
12
|
+
set _blendFunction(blendFunction: BlendFunction);
|
|
13
|
+
set _distanceScaling(distanceScaling: boolean);
|
|
14
|
+
set _depthAwareUpsampling(depthAwareUpsampling: boolean);
|
|
15
|
+
set _normalDepthBuffer(normalDepthBuffer: THREE.Texture);
|
|
16
|
+
set _samples(samples: number);
|
|
17
|
+
set _rings(rings: number);
|
|
18
|
+
set _worldDistanceThreshold(worldDistanceThreshold: number);
|
|
19
|
+
set _worldDistanceFalloff(worldDistanceFalloff: number);
|
|
20
|
+
set _worldProximityThreshold(worldProximityThreshold: number);
|
|
21
|
+
set _worldProximityFalloff(worldProximityFalloff: number);
|
|
22
|
+
set _distanceThreshold(distanceThreshold: number);
|
|
23
|
+
set _distanceFalloff(distanceFalloff: number);
|
|
24
|
+
set _rangeThreshold(rangeThreshold: number);
|
|
25
|
+
set _rangeFalloff(rangeFalloff: number);
|
|
26
|
+
set _minRadiusScale(minRadiusScale: number);
|
|
27
|
+
set _luminanceInfluence(luminanceInfluence: number);
|
|
28
|
+
set _radius(radius: number);
|
|
29
|
+
set _intensity(intensity: number);
|
|
30
|
+
set _bias(bias: number);
|
|
31
|
+
set _fade(fade: number);
|
|
32
|
+
set _color(color: THREE.Color);
|
|
33
|
+
set _resolutionScale(resolutionScale: number);
|
|
34
|
+
set _resolutionX(resolutionX: number);
|
|
35
|
+
set _resolutionY(resolutionY: number);
|
|
36
|
+
set _width(width: number);
|
|
37
|
+
set _height(height: number);
|
|
38
|
+
private effectComposerApi;
|
|
39
|
+
effect: import("@angular/core").Signal<SSAOEffect | null>;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpSSAO, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSSAO, "ngtp-SSAO", never, { "effectRef": { "alias": "effectRef"; "required": false; }; "_blendFunction": { "alias": "blendFunction"; "required": false; }; "_distanceScaling": { "alias": "distanceScaling"; "required": false; }; "_depthAwareUpsampling": { "alias": "depthAwareUpsampling"; "required": false; }; "_normalDepthBuffer": { "alias": "normalDepthBuffer"; "required": false; }; "_samples": { "alias": "samples"; "required": false; }; "_rings": { "alias": "rings"; "required": false; }; "_worldDistanceThreshold": { "alias": "worldDistanceThreshold"; "required": false; }; "_worldDistanceFalloff": { "alias": "worldDistanceFalloff"; "required": false; }; "_worldProximityThreshold": { "alias": "worldProximityThreshold"; "required": false; }; "_worldProximityFalloff": { "alias": "worldProximityFalloff"; "required": false; }; "_distanceThreshold": { "alias": "distanceThreshold"; "required": false; }; "_distanceFalloff": { "alias": "distanceFalloff"; "required": false; }; "_rangeThreshold": { "alias": "rangeThreshold"; "required": false; }; "_rangeFalloff": { "alias": "rangeFalloff"; "required": false; }; "_minRadiusScale": { "alias": "minRadiusScale"; "required": false; }; "_luminanceInfluence": { "alias": "luminanceInfluence"; "required": false; }; "_radius": { "alias": "radius"; "required": false; }; "_intensity": { "alias": "intensity"; "required": false; }; "_bias": { "alias": "bias"; "required": false; }; "_fade": { "alias": "fade"; "required": false; }; "_color": { "alias": "color"; "required": false; }; "_resolutionScale": { "alias": "resolutionScale"; "required": false; }; "_resolutionX": { "alias": "resolutionX"; "required": false; }; "_resolutionY": { "alias": "resolutionY"; "required": false; }; "_width": { "alias": "width"; "required": false; }; "_height": { "alias": "height"; "required": false; }; }, {}, never, never, true, never>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { BlendFunction, KernelSize, TiltShiftEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect, type NgtpEffectState } from '../../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'ngtp-tilt-shift': {
|
|
7
|
+
offset?: number;
|
|
8
|
+
rotation?: number;
|
|
9
|
+
focusArea?: number;
|
|
10
|
+
feather?: number;
|
|
11
|
+
bias?: number;
|
|
12
|
+
kernelSize?: KernelSize;
|
|
13
|
+
resolutionScale?: number;
|
|
14
|
+
resolutionX?: number;
|
|
15
|
+
resolutionY?: number;
|
|
16
|
+
} & NgtpEffectState;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export declare class NgtpTiltShift extends NgtpEffect<TiltShiftEffect> {
|
|
20
|
+
defaultBlendFunction: BlendFunction;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpTiltShift, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpTiltShift, "ngtp-tilt-shift", never, {}, {}, never, ["*"], true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ToneMappingEffect, ToneMappingMode } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect, type NgtpEffectState } from '../../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'ngtp-tone-mapping': {
|
|
7
|
+
adaptive?: boolean;
|
|
8
|
+
mode?: ToneMappingMode;
|
|
9
|
+
resolution?: number;
|
|
10
|
+
maxLuminance?: number;
|
|
11
|
+
whitePoint?: number;
|
|
12
|
+
middleGrey?: number;
|
|
13
|
+
minLuminance?: number;
|
|
14
|
+
averageLuminance?: number;
|
|
15
|
+
adaptationRate?: number;
|
|
16
|
+
} & NgtpEffectState;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export declare class NgtpToneMapping extends NgtpEffect<ToneMappingEffect> {
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpToneMapping, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpToneMapping, "ngtp-tone-mapping", never, {}, {}, never, ["*"], true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { VignetteEffect, VignetteTechnique } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect, type NgtpEffectState } from '../../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'ngtp-vignette': {
|
|
7
|
+
technique?: VignetteTechnique;
|
|
8
|
+
eskil?: boolean;
|
|
9
|
+
offset?: number;
|
|
10
|
+
darkness?: number;
|
|
11
|
+
} & NgtpEffectState;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export declare class NgtpVignette extends NgtpEffect<VignetteEffect> {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpVignette, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpVignette, "ngtp-vignette", never, {}, {}, never, ["*"], true, never>;
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-three-postprocessing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/angular-threejs/postprocessing"
|
|
9
|
+
"url": "https://github.com/angular-threejs/angular-three/tree/main/libs/postprocessing"
|
|
10
10
|
},
|
|
11
11
|
"author": {
|
|
12
12
|
"name": "Chau Tran",
|
|
@@ -22,23 +22,16 @@
|
|
|
22
22
|
],
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/common": "^
|
|
26
|
-
"@angular/core": "
|
|
27
|
-
"angular-three": "^
|
|
25
|
+
"@angular/common": "^16.0.0",
|
|
26
|
+
"@angular/core": " ^16.0.0",
|
|
27
|
+
"angular-three": "^2.0.0",
|
|
28
28
|
"postprocessing": "^6.0.0",
|
|
29
|
-
"three": "
|
|
30
|
-
"rxjs": "7.8.1",
|
|
31
|
-
"@rx-angular/state": "15.0.0",
|
|
32
|
-
"three-stdlib": "2.21.11"
|
|
29
|
+
"three": ">=0.148.0"
|
|
33
30
|
},
|
|
34
31
|
"dependencies": {
|
|
35
|
-
"tslib": "^2.3.0"
|
|
36
|
-
"@nx/devkit": "^16.0.0",
|
|
37
|
-
"nx": "^16.0.0"
|
|
32
|
+
"tslib": "^2.3.0"
|
|
38
33
|
},
|
|
39
34
|
"sideEffects": false,
|
|
40
|
-
"generators": "./plugin/generators.json",
|
|
41
|
-
"schematics": "./plugin/generators.json",
|
|
42
35
|
"module": "fesm2022/angular-three-postprocessing.mjs",
|
|
43
36
|
"typings": "index.d.ts",
|
|
44
37
|
"exports": {
|
|
@@ -50,18 +43,6 @@
|
|
|
50
43
|
"esm2022": "./esm2022/angular-three-postprocessing.mjs",
|
|
51
44
|
"esm": "./esm2022/angular-three-postprocessing.mjs",
|
|
52
45
|
"default": "./fesm2022/angular-three-postprocessing.mjs"
|
|
53
|
-
},
|
|
54
|
-
"./effects": {
|
|
55
|
-
"types": "./effects/index.d.ts",
|
|
56
|
-
"esm2022": "./esm2022/effects/angular-three-postprocessing-effects.mjs",
|
|
57
|
-
"esm": "./esm2022/effects/angular-three-postprocessing-effects.mjs",
|
|
58
|
-
"default": "./fesm2022/angular-three-postprocessing-effects.mjs"
|
|
59
|
-
},
|
|
60
|
-
"./selection": {
|
|
61
|
-
"types": "./selection/index.d.ts",
|
|
62
|
-
"esm2022": "./esm2022/selection/angular-three-postprocessing-selection.mjs",
|
|
63
|
-
"esm": "./esm2022/selection/angular-three-postprocessing-selection.mjs",
|
|
64
|
-
"default": "./fesm2022/angular-three-postprocessing-selection.mjs"
|
|
65
46
|
}
|
|
66
47
|
}
|
|
67
48
|
}
|
package/effects/README.md
DELETED
package/effects/index.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export * from './lib/bloom/bloom';
|
|
2
|
-
export * from './lib/brightness-contrast/brightness-contrast';
|
|
3
|
-
export * from './lib/color-depth/color-depth';
|
|
4
|
-
export * from './lib/depth/depth';
|
|
5
|
-
export * from './lib/dot-screen/dot-screen';
|
|
6
|
-
export * from './lib/hue-saturation/hue-saturation';
|
|
7
|
-
export * from './lib/lut/lut';
|
|
8
|
-
export * from './lib/noise/noise';
|
|
9
|
-
export * from './lib/scanline/scanline';
|
|
10
|
-
export * from './lib/sepia/sepia';
|
|
11
|
-
export * from './lib/ssao/ssao';
|
|
12
|
-
export * from './lib/tilt-shift/tilt-shift';
|
|
13
|
-
export * from './lib/tone-mapping/tone-mapping';
|
|
14
|
-
export * from './lib/vignette/vignette';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { BlendFunction, BloomEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpBloom extends NgtpEffect<BloomEffect> {
|
|
5
|
-
get effectConstructor(): typeof BloomEffect;
|
|
6
|
-
defaultBlendMode: BlendFunction;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpBloom, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpBloom, "ngtp-bloom", never, { "mipmapBlur": { "alias": "mipmapBlur"; "required": false; }; "luminanceThreshold": { "alias": "luminanceThreshold"; "required": false; }; "luminanceSmoothing": { "alias": "luminanceSmoothing"; "required": false; }; "intensity": { "alias": "intensity"; "required": false; }; "resolutionScale": { "alias": "resolutionScale"; "required": false; }; "resolutionX": { "alias": "resolutionX"; "required": false; }; "resolutionY": { "alias": "resolutionY"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "kernelSize": { "alias": "kernelSize"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { BrightnessContrastEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpBrightnessContrast extends NgtpEffect<BrightnessContrastEffect> {
|
|
5
|
-
get effectConstructor(): typeof BrightnessContrastEffect;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpBrightnessContrast, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpBrightnessContrast, "ngtp-brightness-contrast", never, { "brightness": { "alias": "brightness"; "required": false; }; "contrast": { "alias": "contrast"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { DotScreenEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpDotScreen extends NgtpEffect<DotScreenEffect> {
|
|
5
|
-
get effectConstructor(): typeof DotScreenEffect;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpDotScreen, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpDotScreen, "ngtp-dot-screen", never, { "angle": { "alias": "angle"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { HueSaturationEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpHueSaturation extends NgtpEffect<HueSaturationEffect> {
|
|
5
|
-
get effectConstructor(): typeof HueSaturationEffect;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpHueSaturation, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpHueSaturation, "ngtp-hue-saturation", never, { "hue": { "alias": "hue"; "required": false; }; "saturation": { "alias": "saturation"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
-
}
|
package/effects/lib/lut/lut.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { NgtRxStore } from 'angular-three';
|
|
3
|
-
import { LUT3DEffect } from 'postprocessing';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class NgtpLUT extends NgtRxStore implements OnInit, OnChanges {
|
|
6
|
-
private readonly store;
|
|
7
|
-
lutRef: import("angular-three").NgtInjectedRef<LUT3DEffect>;
|
|
8
|
-
set lut(lut: THREE.Texture);
|
|
9
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpLUT, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpLUT, "ngtp-lut", never, { "blendFunction": { "alias": "blendFunction"; "required": false; }; "tetrahedralInterpolation": { "alias": "tetrahedralInterpolation"; "required": false; }; "lutRef": { "alias": "lutRef"; "required": false; }; "lut": { "alias": "lut"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { BlendFunction, NoiseEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpNoise extends NgtpEffect<NoiseEffect> {
|
|
5
|
-
get effectConstructor(): typeof NoiseEffect;
|
|
6
|
-
defaultBlendMode: BlendFunction;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpNoise, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpNoise, "ngtp-noise", never, { "premultiply": { "alias": "premultiply"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { BlendFunction, ScanlineEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpScanline extends NgtpEffect<ScanlineEffect> {
|
|
5
|
-
get effectConstructor(): typeof ScanlineEffect;
|
|
6
|
-
defaultBlendMode: BlendFunction;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpScanline, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpScanline, "ngtp-scanline", never, { "density": { "alias": "density"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { NgtRxStore } from 'angular-three';
|
|
3
|
-
import { SSAOEffect } from 'postprocessing';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class NgtpSSAO extends NgtRxStore implements OnInit, OnChanges {
|
|
6
|
-
private readonly effectComposerApi;
|
|
7
|
-
ssaoRef: import("angular-three").NgtInjectedRef<SSAOEffect>;
|
|
8
|
-
initialize(): void;
|
|
9
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpSSAO, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSSAO, "ngtp-ssao", never, { "blendFunction": { "alias": "blendFunction"; "required": false; }; "distanceScaling": { "alias": "distanceScaling"; "required": false; }; "depthAwareUpsampling": { "alias": "depthAwareUpsampling"; "required": false; }; "normalDepthBuffer": { "alias": "normalDepthBuffer"; "required": false; }; "samples": { "alias": "samples"; "required": false; }; "rings": { "alias": "rings"; "required": false; }; "worldDistanceThreshold": { "alias": "worldDistanceThreshold"; "required": false; }; "worldDistanceFalloff": { "alias": "worldDistanceFalloff"; "required": false; }; "worldProximityThreshold": { "alias": "worldProximityThreshold"; "required": false; }; "worldProximityFalloff": { "alias": "worldProximityFalloff"; "required": false; }; "distanceThreshold": { "alias": "distanceThreshold"; "required": false; }; "distanceFalloff": { "alias": "distanceFalloff"; "required": false; }; "rangeThreshold": { "alias": "rangeThreshold"; "required": false; }; "rangeFalloff": { "alias": "rangeFalloff"; "required": false; }; "minRadiusScale": { "alias": "minRadiusScale"; "required": false; }; "luminanceInfluence": { "alias": "luminanceInfluence"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; "intensity": { "alias": "intensity"; "required": false; }; "bias": { "alias": "bias"; "required": false; }; "fade": { "alias": "fade"; "required": false; }; "color": { "alias": "color"; "required": false; }; "resolutionScale": { "alias": "resolutionScale"; "required": false; }; "resolutionX": { "alias": "resolutionX"; "required": false; }; "resolutionY": { "alias": "resolutionY"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "ssaoRef": { "alias": "ssaoRef"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { BlendFunction, TiltShiftEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpTiltShift extends NgtpEffect<TiltShiftEffect> {
|
|
5
|
-
get effectConstructor(): typeof TiltShiftEffect;
|
|
6
|
-
defaultBlendMode: BlendFunction;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpTiltShift, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpTiltShift, "ngtp-tilt-shift", never, { "offset": { "alias": "offset"; "required": false; }; "rotation": { "alias": "rotation"; "required": false; }; "focusArea": { "alias": "focusArea"; "required": false; }; "feather": { "alias": "feather"; "required": false; }; "bias": { "alias": "bias"; "required": false; }; "kernelSize": { "alias": "kernelSize"; "required": false; }; "resolutionScale": { "alias": "resolutionScale"; "required": false; }; "resolutionX": { "alias": "resolutionX"; "required": false; }; "resolutionY": { "alias": "resolutionY"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { ToneMappingEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpToneMapping extends NgtpEffect<ToneMappingEffect> {
|
|
5
|
-
get effectConstructor(): typeof ToneMappingEffect;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpToneMapping, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpToneMapping, "ngtp-tone-mapping", never, { "adaptive": { "alias": "adaptive"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "resolution": { "alias": "resolution"; "required": false; }; "maxLuminance": { "alias": "maxLuminance"; "required": false; }; "whitePoint": { "alias": "whitePoint"; "required": false; }; "middleGrey": { "alias": "middleGrey"; "required": false; }; "minLuminance": { "alias": "minLuminance"; "required": false; }; "averageLuminance": { "alias": "averageLuminance"; "required": false; }; "adaptationRate": { "alias": "adaptationRate"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
2
|
-
import { VignetteEffect } from 'postprocessing';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgtpVignette extends NgtpEffect<VignetteEffect> {
|
|
5
|
-
get effectConstructor(): typeof VignetteEffect;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpVignette, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpVignette, "ngtp-vignette", never, { "technique": { "alias": "technique"; "required": false; }; "eskil": { "alias": "eskil"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "darkness": { "alias": "darkness"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './index';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ndWxhci10aHJlZS1wb3N0cHJvY2Vzc2luZy1lZmZlY3RzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9hbmd1bGFyLXRocmVlLXBvc3Rwcm9jZXNzaW5nL2VmZmVjdHMvc3JjL2FuZ3VsYXItdGhyZWUtcG9zdHByb2Nlc3NpbmctZWZmZWN0cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export * from './lib/bloom/bloom';
|
|
2
|
-
export * from './lib/brightness-contrast/brightness-contrast';
|
|
3
|
-
export * from './lib/color-depth/color-depth';
|
|
4
|
-
export * from './lib/depth/depth';
|
|
5
|
-
export * from './lib/dot-screen/dot-screen';
|
|
6
|
-
export * from './lib/hue-saturation/hue-saturation';
|
|
7
|
-
export * from './lib/lut/lut';
|
|
8
|
-
export * from './lib/noise/noise';
|
|
9
|
-
export * from './lib/scanline/scanline';
|
|
10
|
-
export * from './lib/sepia/sepia';
|
|
11
|
-
export * from './lib/ssao/ssao';
|
|
12
|
-
export * from './lib/tilt-shift/tilt-shift';
|
|
13
|
-
export * from './lib/tone-mapping/tone-mapping';
|
|
14
|
-
export * from './lib/vignette/vignette';
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItdGhyZWUtcG9zdHByb2Nlc3NpbmcvZWZmZWN0cy9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLCtDQUErQyxDQUFDO0FBQzlELGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGliL2Jsb29tL2Jsb29tJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2JyaWdodG5lc3MtY29udHJhc3QvYnJpZ2h0bmVzcy1jb250cmFzdCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb2xvci1kZXB0aC9jb2xvci1kZXB0aCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kZXB0aC9kZXB0aCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kb3Qtc2NyZWVuL2RvdC1zY3JlZW4nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaHVlLXNhdHVyYXRpb24vaHVlLXNhdHVyYXRpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbHV0L2x1dCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub2lzZS9ub2lzZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zY2FubGluZS9zY2FubGluZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXBpYS9zZXBpYSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zc2FvL3NzYW8nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdGlsdC1zaGlmdC90aWx0LXNoaWZ0JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3RvbmUtbWFwcGluZy90b25lLW1hcHBpbmcnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdmlnbmV0dGUvdmlnbmV0dGUnO1xuIl19
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
|
-
import { NgtArgs } from 'angular-three';
|
|
3
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
4
|
-
import { BlendFunction, BloomEffect } from 'postprocessing';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
class NgtpBloom extends NgtpEffect {
|
|
7
|
-
constructor() {
|
|
8
|
-
super(...arguments);
|
|
9
|
-
this.defaultBlendMode = BlendFunction.ADD;
|
|
10
|
-
}
|
|
11
|
-
get effectConstructor() {
|
|
12
|
-
return BloomEffect;
|
|
13
|
-
}
|
|
14
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpBloom, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
15
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: NgtpBloom, isStandalone: true, selector: "ngtp-bloom", inputs: { mipmapBlur: "mipmapBlur", luminanceThreshold: "luminanceThreshold", luminanceSmoothing: "luminanceSmoothing", intensity: "intensity", resolutionScale: "resolutionScale", resolutionX: "resolutionX", resolutionY: "resolutionY", width: "width", height: "height", kernelSize: "kernelSize" }, usesInheritance: true, ngImport: i0, template: `
|
|
16
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
17
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "[args]", inputs: ["args"] }] }); }
|
|
18
|
-
}
|
|
19
|
-
export { NgtpBloom };
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpBloom, decorators: [{
|
|
21
|
-
type: Component,
|
|
22
|
-
args: [{
|
|
23
|
-
selector: 'ngtp-bloom',
|
|
24
|
-
standalone: true,
|
|
25
|
-
template: `
|
|
26
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
27
|
-
`,
|
|
28
|
-
imports: [NgtArgs],
|
|
29
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
30
|
-
inputs: [
|
|
31
|
-
'mipmapBlur',
|
|
32
|
-
'luminanceThreshold',
|
|
33
|
-
'luminanceSmoothing',
|
|
34
|
-
'intensity',
|
|
35
|
-
'resolutionScale',
|
|
36
|
-
'resolutionX',
|
|
37
|
-
'resolutionY',
|
|
38
|
-
'width',
|
|
39
|
-
'height',
|
|
40
|
-
'kernelSize',
|
|
41
|
-
],
|
|
42
|
-
}]
|
|
43
|
-
}] });
|
|
44
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvb20uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItdGhyZWUtcG9zdHByb2Nlc3NpbmcvZWZmZWN0cy9zcmMvbGliL2Jsb29tL2Jsb29tLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbEUsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDMUQsT0FBTyxFQUFFLGFBQWEsRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFFNUQsTUFxQmEsU0FBVSxTQUFRLFVBQXVCO0lBckJ0RDs7UUEwQmEscUJBQWdCLEdBQWtCLGFBQWEsQ0FBQyxHQUFHLENBQUM7S0FDaEU7SUFMRyxJQUFhLGlCQUFpQjtRQUMxQixPQUFPLFdBQVcsQ0FBQztJQUN2QixDQUFDOzhHQUhRLFNBQVM7a0dBQVQsU0FBUyx1WUFsQlI7O0tBRVQsNERBQ1MsT0FBTzs7U0FlUixTQUFTOzJGQUFULFNBQVM7a0JBckJyQixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxZQUFZO29CQUN0QixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsUUFBUSxFQUFFOztLQUVUO29CQUNELE9BQU8sRUFBRSxDQUFDLE9BQU8sQ0FBQztvQkFDbEIsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7b0JBQ2pDLE1BQU0sRUFBRTt3QkFDSixZQUFZO3dCQUNaLG9CQUFvQjt3QkFDcEIsb0JBQW9CO3dCQUNwQixXQUFXO3dCQUNYLGlCQUFpQjt3QkFDakIsYUFBYTt3QkFDYixhQUFhO3dCQUNiLE9BQU87d0JBQ1AsUUFBUTt3QkFDUixZQUFZO3FCQUNmO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBDVVNUT01fRUxFTUVOVFNfU0NIRU1BIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOZ3RBcmdzIH0gZnJvbSAnYW5ndWxhci10aHJlZSc7XG5pbXBvcnQgeyBOZ3RwRWZmZWN0IH0gZnJvbSAnYW5ndWxhci10aHJlZS1wb3N0cHJvY2Vzc2luZyc7XG5pbXBvcnQgeyBCbGVuZEZ1bmN0aW9uLCBCbG9vbUVmZmVjdCB9IGZyb20gJ3Bvc3Rwcm9jZXNzaW5nJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduZ3RwLWJsb29tJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIHRlbXBsYXRlOiBgXG4gICAgICAgIDxuZ3QtcHJpbWl0aXZlICphcmdzPVwiW2dldCgnZWZmZWN0JyldXCIgbmd0Q29tcG91bmQgLz5cbiAgICBgLFxuICAgIGltcG9ydHM6IFtOZ3RBcmdzXSxcbiAgICBzY2hlbWFzOiBbQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQV0sXG4gICAgaW5wdXRzOiBbXG4gICAgICAgICdtaXBtYXBCbHVyJyxcbiAgICAgICAgJ2x1bWluYW5jZVRocmVzaG9sZCcsXG4gICAgICAgICdsdW1pbmFuY2VTbW9vdGhpbmcnLFxuICAgICAgICAnaW50ZW5zaXR5JyxcbiAgICAgICAgJ3Jlc29sdXRpb25TY2FsZScsXG4gICAgICAgICdyZXNvbHV0aW9uWCcsXG4gICAgICAgICdyZXNvbHV0aW9uWScsXG4gICAgICAgICd3aWR0aCcsXG4gICAgICAgICdoZWlnaHQnLFxuICAgICAgICAna2VybmVsU2l6ZScsXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgTmd0cEJsb29tIGV4dGVuZHMgTmd0cEVmZmVjdDxCbG9vbUVmZmVjdD4ge1xuICAgIG92ZXJyaWRlIGdldCBlZmZlY3RDb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgcmV0dXJuIEJsb29tRWZmZWN0O1xuICAgIH1cblxuICAgIG92ZXJyaWRlIGRlZmF1bHRCbGVuZE1vZGU6IEJsZW5kRnVuY3Rpb24gPSBCbGVuZEZ1bmN0aW9uLkFERDtcbn1cbiJdfQ==
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
|
-
import { NgtArgs } from 'angular-three';
|
|
3
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
4
|
-
import { BrightnessContrastEffect } from 'postprocessing';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
class NgtpBrightnessContrast extends NgtpEffect {
|
|
7
|
-
get effectConstructor() {
|
|
8
|
-
return BrightnessContrastEffect;
|
|
9
|
-
}
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpBrightnessContrast, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: NgtpBrightnessContrast, isStandalone: true, selector: "ngtp-brightness-contrast", inputs: { brightness: "brightness", contrast: "contrast" }, usesInheritance: true, ngImport: i0, template: `
|
|
12
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
13
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "[args]", inputs: ["args"] }] }); }
|
|
14
|
-
}
|
|
15
|
-
export { NgtpBrightnessContrast };
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpBrightnessContrast, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngtp-brightness-contrast',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: `
|
|
22
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
23
|
-
`,
|
|
24
|
-
imports: [NgtArgs],
|
|
25
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
26
|
-
inputs: ['brightness', 'contrast'],
|
|
27
|
-
}]
|
|
28
|
-
}] });
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJpZ2h0bmVzcy1jb250cmFzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci10aHJlZS1wb3N0cHJvY2Vzc2luZy9lZmZlY3RzL3NyYy9saWIvYnJpZ2h0bmVzcy1jb250cmFzdC9icmlnaHRuZXNzLWNvbnRyYXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbEUsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDMUQsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7O0FBRTFELE1BVWEsc0JBQXVCLFNBQVEsVUFBb0M7SUFDNUUsSUFBYSxpQkFBaUI7UUFDMUIsT0FBTyx3QkFBd0IsQ0FBQztJQUNwQyxDQUFDOzhHQUhRLHNCQUFzQjtrR0FBdEIsc0JBQXNCLHVLQVByQjs7S0FFVCw0REFDUyxPQUFPOztTQUlSLHNCQUFzQjsyRkFBdEIsc0JBQXNCO2tCQVZsQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSwwQkFBMEI7b0JBQ3BDLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUU7O0tBRVQ7b0JBQ0QsT0FBTyxFQUFFLENBQUMsT0FBTyxDQUFDO29CQUNsQixPQUFPLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztvQkFDakMsTUFBTSxFQUFFLENBQUMsWUFBWSxFQUFFLFVBQVUsQ0FBQztpQkFDckMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIENVU1RPTV9FTEVNRU5UU19TQ0hFTUEgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5ndEFyZ3MgfSBmcm9tICdhbmd1bGFyLXRocmVlJztcbmltcG9ydCB7IE5ndHBFZmZlY3QgfSBmcm9tICdhbmd1bGFyLXRocmVlLXBvc3Rwcm9jZXNzaW5nJztcbmltcG9ydCB7IEJyaWdodG5lc3NDb250cmFzdEVmZmVjdCB9IGZyb20gJ3Bvc3Rwcm9jZXNzaW5nJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduZ3RwLWJyaWdodG5lc3MtY29udHJhc3QnLFxuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgdGVtcGxhdGU6IGBcbiAgICAgICAgPG5ndC1wcmltaXRpdmUgKmFyZ3M9XCJbZ2V0KCdlZmZlY3QnKV1cIiBuZ3RDb21wb3VuZCAvPlxuICAgIGAsXG4gICAgaW1wb3J0czogW05ndEFyZ3NdLFxuICAgIHNjaGVtYXM6IFtDVVNUT01fRUxFTUVOVFNfU0NIRU1BXSxcbiAgICBpbnB1dHM6IFsnYnJpZ2h0bmVzcycsICdjb250cmFzdCddLFxufSlcbmV4cG9ydCBjbGFzcyBOZ3RwQnJpZ2h0bmVzc0NvbnRyYXN0IGV4dGVuZHMgTmd0cEVmZmVjdDxCcmlnaHRuZXNzQ29udHJhc3RFZmZlY3Q+IHtcbiAgICBvdmVycmlkZSBnZXQgZWZmZWN0Q29uc3RydWN0b3IoKSB7XG4gICAgICAgIHJldHVybiBCcmlnaHRuZXNzQ29udHJhc3RFZmZlY3Q7XG4gICAgfVxufVxuIl19
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
|
-
import { NgtArgs } from 'angular-three';
|
|
3
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
4
|
-
import { ColorDepthEffect } from 'postprocessing';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
class NgtpColorDepth extends NgtpEffect {
|
|
7
|
-
get effectConstructor() {
|
|
8
|
-
return ColorDepthEffect;
|
|
9
|
-
}
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpColorDepth, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: NgtpColorDepth, isStandalone: true, selector: "ngtp-color-depth", inputs: { bits: "bits" }, usesInheritance: true, ngImport: i0, template: `
|
|
12
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
13
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "[args]", inputs: ["args"] }] }); }
|
|
14
|
-
}
|
|
15
|
-
export { NgtpColorDepth };
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpColorDepth, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngtp-color-depth',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: `
|
|
22
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
23
|
-
`,
|
|
24
|
-
imports: [NgtArgs],
|
|
25
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
26
|
-
inputs: ['bits'],
|
|
27
|
-
}]
|
|
28
|
-
}] });
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3ItZGVwdGguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItdGhyZWUtcG9zdHByb2Nlc3NpbmcvZWZmZWN0cy9zcmMvbGliL2NvbG9yLWRlcHRoL2NvbG9yLWRlcHRoLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbEUsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDMUQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7O0FBRWxELE1BVWEsY0FBZSxTQUFRLFVBQTRCO0lBQzVELElBQWEsaUJBQWlCO1FBQzFCLE9BQU8sZ0JBQWdCLENBQUM7SUFDNUIsQ0FBQzs4R0FIUSxjQUFjO2tHQUFkLGNBQWMsNkhBUGI7O0tBRVQsNERBQ1MsT0FBTzs7U0FJUixjQUFjOzJGQUFkLGNBQWM7a0JBVjFCLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLGtCQUFrQjtvQkFDNUIsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRTs7S0FFVDtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxPQUFPLENBQUM7b0JBQ2xCLE9BQU8sRUFBRSxDQUFDLHNCQUFzQixDQUFDO29CQUNqQyxNQUFNLEVBQUUsQ0FBQyxNQUFNLENBQUM7aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBDVVNUT01fRUxFTUVOVFNfU0NIRU1BIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOZ3RBcmdzIH0gZnJvbSAnYW5ndWxhci10aHJlZSc7XG5pbXBvcnQgeyBOZ3RwRWZmZWN0IH0gZnJvbSAnYW5ndWxhci10aHJlZS1wb3N0cHJvY2Vzc2luZyc7XG5pbXBvcnQgeyBDb2xvckRlcHRoRWZmZWN0IH0gZnJvbSAncG9zdHByb2Nlc3NpbmcnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ25ndHAtY29sb3ItZGVwdGgnLFxuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgdGVtcGxhdGU6IGBcbiAgICAgICAgPG5ndC1wcmltaXRpdmUgKmFyZ3M9XCJbZ2V0KCdlZmZlY3QnKV1cIiBuZ3RDb21wb3VuZCAvPlxuICAgIGAsXG4gICAgaW1wb3J0czogW05ndEFyZ3NdLFxuICAgIHNjaGVtYXM6IFtDVVNUT01fRUxFTUVOVFNfU0NIRU1BXSxcbiAgICBpbnB1dHM6IFsnYml0cyddLFxufSlcbmV4cG9ydCBjbGFzcyBOZ3RwQ29sb3JEZXB0aCBleHRlbmRzIE5ndHBFZmZlY3Q8Q29sb3JEZXB0aEVmZmVjdD4ge1xuICAgIG92ZXJyaWRlIGdldCBlZmZlY3RDb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgcmV0dXJuIENvbG9yRGVwdGhFZmZlY3Q7XG4gICAgfVxufVxuIl19
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
|
-
import { NgtArgs } from 'angular-three';
|
|
3
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
4
|
-
import { DepthEffect } from 'postprocessing';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
class NgtpDepth extends NgtpEffect {
|
|
7
|
-
get effectConstructor() {
|
|
8
|
-
return DepthEffect;
|
|
9
|
-
}
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpDepth, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: NgtpDepth, isStandalone: true, selector: "ngtp-depth", inputs: { inverted: "inverted" }, usesInheritance: true, ngImport: i0, template: `
|
|
12
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
13
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "[args]", inputs: ["args"] }] }); }
|
|
14
|
-
}
|
|
15
|
-
export { NgtpDepth };
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpDepth, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngtp-depth',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: `
|
|
22
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
23
|
-
`,
|
|
24
|
-
imports: [NgtArgs],
|
|
25
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
26
|
-
inputs: ['inverted'],
|
|
27
|
-
}]
|
|
28
|
-
}] });
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVwdGguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItdGhyZWUtcG9zdHByb2Nlc3NpbmcvZWZmZWN0cy9zcmMvbGliL2RlcHRoL2RlcHRoLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbEUsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDMUQsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOztBQUU3QyxNQVVhLFNBQVUsU0FBUSxVQUF1QjtJQUNsRCxJQUFhLGlCQUFpQjtRQUMxQixPQUFPLFdBQVcsQ0FBQztJQUN2QixDQUFDOzhHQUhRLFNBQVM7a0dBQVQsU0FBUywrSEFQUjs7S0FFVCw0REFDUyxPQUFPOztTQUlSLFNBQVM7MkZBQVQsU0FBUztrQkFWckIsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsWUFBWTtvQkFDdEIsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRTs7S0FFVDtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxPQUFPLENBQUM7b0JBQ2xCLE9BQU8sRUFBRSxDQUFDLHNCQUFzQixDQUFDO29CQUNqQyxNQUFNLEVBQUUsQ0FBQyxVQUFVLENBQUM7aUJBQ3ZCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBDVVNUT01fRUxFTUVOVFNfU0NIRU1BIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOZ3RBcmdzIH0gZnJvbSAnYW5ndWxhci10aHJlZSc7XG5pbXBvcnQgeyBOZ3RwRWZmZWN0IH0gZnJvbSAnYW5ndWxhci10aHJlZS1wb3N0cHJvY2Vzc2luZyc7XG5pbXBvcnQgeyBEZXB0aEVmZmVjdCB9IGZyb20gJ3Bvc3Rwcm9jZXNzaW5nJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduZ3RwLWRlcHRoJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIHRlbXBsYXRlOiBgXG4gICAgICAgIDxuZ3QtcHJpbWl0aXZlICphcmdzPVwiW2dldCgnZWZmZWN0JyldXCIgbmd0Q29tcG91bmQgLz5cbiAgICBgLFxuICAgIGltcG9ydHM6IFtOZ3RBcmdzXSxcbiAgICBzY2hlbWFzOiBbQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQV0sXG4gICAgaW5wdXRzOiBbJ2ludmVydGVkJ10sXG59KVxuZXhwb3J0IGNsYXNzIE5ndHBEZXB0aCBleHRlbmRzIE5ndHBFZmZlY3Q8RGVwdGhFZmZlY3Q+IHtcbiAgICBvdmVycmlkZSBnZXQgZWZmZWN0Q29uc3RydWN0b3IoKSB7XG4gICAgICAgIHJldHVybiBEZXB0aEVmZmVjdDtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
|
-
import { NgtArgs } from 'angular-three';
|
|
3
|
-
import { NgtpEffect } from 'angular-three-postprocessing';
|
|
4
|
-
import { DotScreenEffect } from 'postprocessing';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
class NgtpDotScreen extends NgtpEffect {
|
|
7
|
-
get effectConstructor() {
|
|
8
|
-
return DotScreenEffect;
|
|
9
|
-
}
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpDotScreen, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: NgtpDotScreen, isStandalone: true, selector: "ngtp-dot-screen", inputs: { angle: "angle", scale: "scale" }, usesInheritance: true, ngImport: i0, template: `
|
|
12
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
13
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "[args]", inputs: ["args"] }] }); }
|
|
14
|
-
}
|
|
15
|
-
export { NgtpDotScreen };
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NgtpDotScreen, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'ngtp-dot-screen',
|
|
20
|
-
standalone: true,
|
|
21
|
-
template: `
|
|
22
|
-
<ngt-primitive *args="[get('effect')]" ngtCompound />
|
|
23
|
-
`,
|
|
24
|
-
imports: [NgtArgs],
|
|
25
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
26
|
-
inputs: ['angle', 'scale'],
|
|
27
|
-
}]
|
|
28
|
-
}] });
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG90LXNjcmVlbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci10aHJlZS1wb3N0cHJvY2Vzc2luZy9lZmZlY3RzL3NyYy9saWIvZG90LXNjcmVlbi9kb3Qtc2NyZWVuLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbEUsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDMUQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLGdCQUFnQixDQUFDOztBQUVqRCxNQVVhLGFBQWMsU0FBUSxVQUEyQjtJQUMxRCxJQUFhLGlCQUFpQjtRQUMxQixPQUFPLGVBQWUsQ0FBQztJQUMzQixDQUFDOzhHQUhRLGFBQWE7a0dBQWIsYUFBYSw4SUFQWjs7S0FFVCw0REFDUyxPQUFPOztTQUlSLGFBQWE7MkZBQWIsYUFBYTtrQkFWekIsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsaUJBQWlCO29CQUMzQixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsUUFBUSxFQUFFOztLQUVUO29CQUNELE9BQU8sRUFBRSxDQUFDLE9BQU8sQ0FBQztvQkFDbEIsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7b0JBQ2pDLE1BQU0sRUFBRSxDQUFDLE9BQU8sRUFBRSxPQUFPLENBQUM7aUJBQzdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBDVVNUT01fRUxFTUVOVFNfU0NIRU1BIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOZ3RBcmdzIH0gZnJvbSAnYW5ndWxhci10aHJlZSc7XG5pbXBvcnQgeyBOZ3RwRWZmZWN0IH0gZnJvbSAnYW5ndWxhci10aHJlZS1wb3N0cHJvY2Vzc2luZyc7XG5pbXBvcnQgeyBEb3RTY3JlZW5FZmZlY3QgfSBmcm9tICdwb3N0cHJvY2Vzc2luZyc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmd0cC1kb3Qtc2NyZWVuJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIHRlbXBsYXRlOiBgXG4gICAgICAgIDxuZ3QtcHJpbWl0aXZlICphcmdzPVwiW2dldCgnZWZmZWN0JyldXCIgbmd0Q29tcG91bmQgLz5cbiAgICBgLFxuICAgIGltcG9ydHM6IFtOZ3RBcmdzXSxcbiAgICBzY2hlbWFzOiBbQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQV0sXG4gICAgaW5wdXRzOiBbJ2FuZ2xlJywgJ3NjYWxlJ10sXG59KVxuZXhwb3J0IGNsYXNzIE5ndHBEb3RTY3JlZW4gZXh0ZW5kcyBOZ3RwRWZmZWN0PERvdFNjcmVlbkVmZmVjdD4ge1xuICAgIG92ZXJyaWRlIGdldCBlZmZlY3RDb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgcmV0dXJuIERvdFNjcmVlbkVmZmVjdDtcbiAgICB9XG59XG4iXX0=
|