Quote:
Originally Posted by leonardo1434
pawn Код:
em C>> atan2(y,x) em Pawn>> atan2(x,y)
Com base nisto, fiz uma funзгo para deixar igual a c.
pawn Код:
stock Float:latan(Float:y, Float:x) { x = atan2(y, x) - 90.0; if(x < 0.0) return x + 90.0; else return x; }
// teste do latan. public OnFilterScriptInit() { printf(#meu: %f --- outro: %f,latan(4.0,2.0),atan2(4.0,2.0)); }
Se tiver errads sу falar.
|
Essa funзгo vai dar este warning:
"warning 208: function with tag result used before definition, forcing reparse"