whoops, missed one

This commit is contained in:
hizzlekizzle 2016-07-20 11:11:36 -05:00 committed by GitHub
parent b4c5c648ce
commit 95fce03925

View file

@ -226,7 +226,7 @@ vec2 bkwtrans(vec2 xy)
float a = (-B + sqrt(B*B - 4.0*A*C)) / (2.0*A);
vec2 uv = (point - a*sinangle) / cosangle;
float r = R*acos(a);
float r = FIX(R*acos(a));
return uv*r/sin(r/R);
}