You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
villares edited this page May 24, 2020
·
4 revisions
Nome
asin()
Exemplos
float a =PI/3;
float s =sin(a);
float as =asin(s);
// Imprime "1.0471976 : 0.86602545 : 1.0471976" println(a +" : "+ s +" : "+ as);
float a =PI+PI/3.0;
float s =sin(a);
float as =asin(s);
// Imprime "4.1887903 : -0.86602545 : -1.0471976" println(a +" : "+ s +" : "+ as);
Descrição
A oposta de sin(); retorna o arco seno de um valor. Esta função espera valores no
intervalo entre -1.0 e 1.0 e retona valores no intervalo entre 0 e PI (3.1415927).