lygia
/v1.1.4
/space
/cart2polar
)cartesian to polar transformation.
Use:
cart2polar(<vec2> st)
#ifndef FNC_CART2POLAR
#define FNC_CART2POLAR
vec2 cart2polar(in vec2 st) {
return vec2(atan(st.y, st.x), length(st));
}
#endif
Use:
cart2polar(<float2> st)
#ifndef FNC_CART2POLAR
#define FNC_CART2POLAR
float2 cart2polar(in float2 st) {
return float2(atan2(st.y, st.x), length(st));
}
#endif
LYGIA is dual-licensed under the Prosperity License and the Patron License for sponsors and contributors.
Sponsors and contributors are automatically added to the Patron License and they can ignore the any non-commercial rule of the Prosperity Licensed software (please take a look to the exception).
It's also possible to get a permanent comercial license hook to a single and specific version of LYGIA.
Sign up for the news letter bellow, joing the LYGIA's channel on Discord or follow the Github repository