There is no asin()
I guess you could just do function asin(v) return -atan2(v, sqrt(1-v*v)) end
function asin(v) return -atan2(v, sqrt(1-v*v)) end
math.asin works
[Please log in to post a comment]