Corrects small typo in atan2() documentation.
(cherry picked from commit 9838c4df7c
)
This commit is contained in:
parent
4740489a97
commit
d02ee1ff0e
|
@ -127,7 +127,7 @@
|
||||||
<description>
|
<description>
|
||||||
Returns the arc tangent of [code]y/x[/code] in radians. Use to get the angle of tangent [code]y/x[/code]. To compute the value, the method takes into account the sign of both arguments in order to determine the quadrant.
|
Returns the arc tangent of [code]y/x[/code] in radians. Use to get the angle of tangent [code]y/x[/code]. To compute the value, the method takes into account the sign of both arguments in order to determine the quadrant.
|
||||||
[codeblock]
|
[codeblock]
|
||||||
a = atan(0, -1) # a is 3.141593
|
a = atan2(0, -1) # a is 3.141593
|
||||||
[/codeblock]
|
[/codeblock]
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
|
Loading…
Reference in New Issue