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

24
node_modules/three-stdlib/shaders/KaleidoShader.d.ts generated vendored Normal file
View File

@@ -0,0 +1,24 @@
/**
* Kaleidoscope Shader
* Radial reflection around center point
* Ported from: http://pixelshaders.com/editor/
* by Toby Schachman / http://tobyschachman.com/
*
* sides: number of reflections
* angle: initial angle in radians
*/
export declare const KaleidoShader: {
uniforms: {
tDiffuse: {
value: null;
};
sides: {
value: number;
};
angle: {
value: number;
};
};
vertexShader: string;
fragmentShader: string;
};