本文整理汇总了PHP中Math::sin方法的典型用法代码示例。如果您正苦于以下问题:PHP Math::sin方法的具体用法?PHP Math::sin怎么用?PHP Math::sin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Math
的用法示例。
在下文中一共展示了Math::sin方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getMoonIllumination
static function getMoonIllumination($date)
{
$d = suncalc_SunCalc::toDays($date);
$s = suncalc_SunCalc::sunCoords($d);
$m = suncalc_SunCalc::moonCoords($d);
$astronomical_unit = 149598000;
$phi = Math::acos(Math::sin($s->dec) * Math::sin($m->dec) + Math::cos($s->dec) * Math::cos($m->dec) * Math::cos($s->ra - $m->ra));
$inc = Math::atan2($astronomical_unit * Math::sin($phi), $m->dist - $astronomical_unit * Math::cos($phi));
$angle = Math::atan2(Math::cos($s->dec) * Math::sin($s->ra - $m->ra), Math::sin($s->dec) * Math::cos($m->dec) - Math::cos($s->dec) * Math::sin($m->dec) * Math::cos($s->ra - $m->ra));
return _hx_anonymous(array("fraction" => (1 + Math::cos($inc)) / 2, "phase" => 0.5 + 0.5 * $inc * ($angle < 0 ? -1 : 1) / Math::$PI, "angle" => $angle));
}