summaryrefslogtreecommitdiffstats
path: root/examples/symmetry.frag
diff options
context:
space:
mode:
Diffstat (limited to 'examples/symmetry.frag')
-rw-r--r--examples/symmetry.frag5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/symmetry.frag b/examples/symmetry.frag
index 7a3fb18..faebd75 100644
--- a/examples/symmetry.frag
+++ b/examples/symmetry.frag
@@ -31,9 +31,10 @@ void main(void) {
float scene = 0;
- int n = 24;
+ int n = 32;
+ float k = 0;
for (int i = 0; i < n; i++) {
- float c = square(vec2(0.5, 0) * rot(PI/2*(4.0*i/n)) * vec2(1, 1), 0.3, PI/2*(24.0*i/n - time/800), p);
+ float c = square(vec2(0.5, 0) * rot(PI/2*(4.0*i/n)) * vec2(1, 1), 0.3, -PI/2*(k*i/n + time/1500), p);
scene = abs(scene - c);
}