Created
July 13, 2016 13:35
-
-
Save cevherkarakoc/bdf525e96a9ee38da20e9ca7c110fdf0 to your computer and use it in GitHub Desktop.
Revisions
-
cevherkarakoc created this gist
Jul 13, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ function polarToCartesian(radius,radian){ return { x:radius*Math.cos(radian), y:radius*Math.sin(radian) } }