Skip to content

Instantly share code, notes, and snippets.

View paulmederos's full-sized avatar
🌱
Nurturing the things that nurture.

Paul Mederos paulmederos

🌱
Nurturing the things that nurture.
View GitHub Profile
@realvjy
realvjy / ChoasLinesShader.metal
Last active June 23, 2025 08:12
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);