当前位置: 首页>>代码示例>>PHP>>正文


PHP Math::sin方法代码示例

本文整理汇总了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));
 }
开发者ID:ypid,项目名称:suncalc-php,代码行数:11,代码来源:SunCalc.class.php


注:本文中的Math::sin方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。