Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

26
node_modules/three-stdlib/shaders/FocusShader.d.ts generated vendored Normal file
View File

@@ -0,0 +1,26 @@
/**
* Focus shader
* based on PaintEffect postprocess from ro.me
* http://code.google.com/p/3-dreams-of-black/source/browse/deploy/js/effects/PaintEffect.js
*/
export declare const FocusShader: {
uniforms: {
tDiffuse: {
value: null;
};
screenWidth: {
value: number;
};
screenHeight: {
value: number;
};
sampleDistance: {
value: number;
};
waveFactor: {
value: number;
};
};
vertexShader: string;
fragmentShader: string;
};