当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing atan()用法及代码示例


Processing, atan()用法介绍。

用法

  • atan(value)

参数

  • value (float) -Infinity to Infinity(不包括)

返回

  • float

说明

tan() 的倒数,返回值的反正切。此函数需要 -Infinity 到 Infinity(不包括)范围内的值,并返回 -PI/2PI/2  范围内的值。

例子

float a = PI/3;
float t = tan(a);
float at = atan(t);
// Prints "1.0471976 : 1.7320509 : 1.0471976"
println(a + " : " + t + " : " +  at);
float a = PI + PI/3.0;
float t = tan(a);
float at = atan(t);
// Prints "4.1887903 : 1.7320513 : 1.0471977"
println(a + " : " + t + " : " +  at);

有关的

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 atan()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。