Skip to content

Instantly share code, notes, and snippets.

View lordsean's full-sized avatar
🎯
Focusing

Sean Rock lordsean

🎯
Focusing
View GitHub Profile
@realvjy
realvjy / ChoasLinesShader.metal
Last active September 2, 2025 20:43
Choas Lines - Metal Shader
// Lines
float hash( float n ) {
return fract(sin(n)*753.5453123);
}
// Slight modification of iq's noise function.
float noise(vector_float2 x )
{
vector_float2 p = floor(x);
vector_float2 f = fract(x);