Skip to content

Instantly share code, notes, and snippets.

@artemuzz
artemuzz / codepen-dots-and-dashes-challenge.markdown
Created July 12, 2021 16:02
Codepen Dots and Dashes challenge
@artemuzz
artemuzz / index.html
Created April 17, 2021 18:10
The Raging Sea
<script id="vertexShader" type="x-shader/x-vertex">
#include <fog_pars_vertex>
uniform float uTime;
uniform float uBigWavesElevation;
uniform vec2 uBigWavesFrequency;
uniform float uBigWaveSpeed;
uniform float uSmallWavesElevation;
@artemuzz
artemuzz / holly-motion.markdown
Last active November 24, 2020 18:18
Holly motion
@artemuzz
artemuzz / GLSL-Noise.md
Created October 7, 2020 14:43 — forked from patriciogonzalezvivo/GLSL-Noise.md
GLSL Noise Algorithms

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);
	return mix(rand(fl), rand(fl + 1.0), fc);
}
@artemuzz
artemuzz / index.html
Created July 4, 2020 14:58
MACID CALL
<base target='_blank'>
<a href='//codepen.io/ycw'>abstdisp</a>
<a href='//unsplash.com/collections/11323911'>coll</a>
@artemuzz
artemuzz / index.html
Created June 11, 2020 16:07
Rolling circles
<canvas id="canvas">Canvas not supported.</canvas>
<ul id="navigation">
<li>Scroll up, down, right and click.</li>
</ul>