From 65bdf90a0082e42b399d207084059432a17e4dca Mon Sep 17 00:00:00 2001 From: Lavanya Mittal Date: Thu, 14 Nov 2024 10:32:13 -0500 Subject: [PATCH] remove in radians since its obvious --- 07/shapes.frag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07/shapes.frag b/07/shapes.frag index 7f409bd..e68744b 100644 --- a/07/shapes.frag +++ b/07/shapes.frag @@ -27,7 +27,7 @@ void main(){ // Angle from the current pixel float a = atan(st.x,st.y)+PI; - // Angular spacing between vertices of shape (in radians) + // Angular spacing between vertices of shape float r = TWO_PI/float(N); // Shaping function that modulate the distance