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