Home | Scripts | Tutorials | Books | Hosting | Forums | Links|

Navigation:

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links






 
 

SPONSORS



 
 

Degrees / radians conversions

A couple of functions for converting from degrees to radians and from radians to degrees

Firstly here are our two functions

<?php
//degrees to radians function
function DegToRad($degrees)
{
return $degrees * 3.14 / 180;
}
//radians to degrees conversion
function RadToDeg($radians)
{
return $radians * 180 / 3.14;
}
?>

and here is our code to test these functions

<?php
//testing our functions with some values
echo DegToRad(90);
echo "<br>";
echo RadToDeg(0.707);
?>

and here is the result of this code

1.57
40.5286624204