summit/frontend/node_modules/three-stdlib/shaders/KaleidoShader.d.ts

25 lines
523 B
TypeScript
Raw Normal View History

2025-12-08 16:31:30 +00:00
/**
* 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;
};