This does a simple scaling with the results that deg2rad(720) is 4PI. For navigation purposes you may wish to mod the results with 2PI.
deg2rad
(PHP 4, PHP 5)
deg2rad — Converts the number in degrees to the radian equivalent
Popis
float deg2rad
( float $number
)
This function converts number from degrees to the radian equivalent.
Parametre
- number
-
Angular value in degrees
Vrátené hodnoty
The radian equivalent of number
Príklady
Example#1 deg2rad() example
<?php
echo deg2rad(45); // 0.785398163397
var_dump(deg2rad(45) === M_PI_4); // bool(true)
?>
deg2rad
john dot navratil at sbcglobal dot net
11-Feb-2007 07:32
11-Feb-2007 07:32
