Processing, acos()
用法介紹。
用法
acos(value)
參數
value
(float)
要返回其反餘弦值的值
返回
float
說明
cos()
的倒數,返回一個值的反餘弦值。此函數需要 -1 到 1 範圍內的值,並返回 0
到 PI (3.1415927)
範圍內的值。
例子
float a = PI;
float c = cos(a);
float ac = acos(c);
// Prints "3.1415927 : -1.0 : 3.1415927"
println(a + " : " + c + " : " + ac);
float a = PI + PI/4.0;
float c = cos(a);
float ac = acos(c);
// Prints "3.926991 : -0.70710665 : 2.3561943"
println(a + " : " + c + " : " + ac);
相關用法
- Processing arrayCopy()用法及代碼示例
- Processing asin()用法及代碼示例
- Processing atan()用法及代碼示例
- Processing ambient()用法及代碼示例
- Processing ambientLight()用法及代碼示例
- Processing applyMatrix()用法及代碼示例
- Processing atan2()用法及代碼示例
- Processing arc()用法及代碼示例
- Processing alpha()用法及代碼示例
- Processing abs()用法及代碼示例
- Processing append()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing FloatDict.sortKeysReverse()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing IntDict.add()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing FloatDict.sub()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 acos()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。