コード例 #1
0
ファイル: Math.php プロジェクト: krishnaguragain/math
 /**
  * Returns the cosine of the specified angle.
  *
  * @param  float $angle
  * @return float
  */
 public function cos($angle)
 {
     return (double) $this->executionEngine->cos($angle);
 }