Saturday 28 October 2017

javascript - Why does Math.cos(90 * Math.PI/180) yield 6.123031769111... and not zero?

I convert degrees to radians (degrees * Math.PI/180) but
why does the
following:



Math.cos(90 *
Math.PI/180)


yield
6.123031769111... and not zero?




I'm
trying to perform 2D rotations uses matrixes and the results are completely out of
whack.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...