From WikiChip
Editing mirc/identifiers/$atan2

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 1: Line 1:
 
{{mirc title|$atan2 Identifier}}'''$atan2''' returns the arctangent of the 2 short sides of a right triangle.
 
{{mirc title|$atan2 Identifier}}'''$atan2''' returns the arctangent of the 2 short sides of a right triangle.
 +
 
== Synopsis ==
 
== Synopsis ==
<pre>$atan2(<O>,<A>)[.deg]</pre>
+
<pre>$atan(<O>,<A>)[.deg]</pre>
 +
 
 
== Parameters ==
 
== Parameters ==
 +
 
<span style="display: inline-block; width: 50px;">'''O'''</span>The length of the Opposite side of the right triangle.<br />
 
<span style="display: inline-block; width: 50px;">'''O'''</span>The length of the Opposite side of the right triangle.<br />
 
<span style="display: inline-block; width: 50px;">'''A'''</span>The length of the Adjacent side of the right triangle.<br />
 
<span style="display: inline-block; width: 50px;">'''A'''</span>The length of the Adjacent side of the right triangle.<br />
 +
 
== Properties ==
 
== Properties ==
 +
 
<span style="display: inline-block; width: 80px;">'''.deg'''</span>Returns the angle as degrees, default is radians.
 
<span style="display: inline-block; width: 80px;">'''.deg'''</span>Returns the angle as degrees, default is radians.
 +
 
== Example ==
 
== Example ==
<source lang="mIRC">//var %opposite 3, %adjacent 4 | echo -a In right triangle where opposite side is length %opposite and adjacent side is length %adjacent - angle is $atan2( %opposite , %adjacent ).deg degrees
+
 
; Returns: In right triangle where opposite side is length 3 and adjacent side is length 4 - angle is 36.869898 degrees
+
<source lang="mIRC">//echo -a In right triangle where adjacent side is 3 and opposite side is 4, angle is $atan2( 3 , 4 ).deg degrees
 +
; Returns: In right triangle where adjacent side is 3 and opposite side is 4, angle is 36.869898 degrees
 
</source>
 
</source>
  
 
<source lang="mIRC">
 
<source lang="mIRC">
//var %opposite 4 | var %adjacent 3 | echo -a except for rounding $atan2(%opposite,%adjacent).deg is the same as $atan( $calc( %opposite / %adjacent ) ).deg
+
//var %opposite 3 | var %adjacent 4 | echo -a $atan2(%opposite,%adjacent) is the same as $atan( $calc( %opposite / %adjacent ) )
 
; ATAN2 accepts the side lengths while ATAN accepts the tangent ratio of those sides
 
; ATAN2 accepts the side lengths while ATAN accepts the tangent ratio of those sides
 
</source>
 
</source>
  
 
== Compatibility ==
 
== Compatibility ==
{{mIRC compatibility|7.33}}
+
{{mIRC compatibility|5.3}}
== See also ==
+
 
 +
== See Also ==
 
* {{mIRC|$cos}}
 
* {{mIRC|$cos}}
 
* {{mIRC|$acos}}
 
* {{mIRC|$acos}}
Line 28: Line 36:
 
* {{mIRC|$tan}}
 
* {{mIRC|$tan}}
 
* {{mIRC|$atan}}
 
* {{mIRC|$atan}}
 +
* {{mIRC|$atan2}}
 
* {{mIRC|$tanh}}
 
* {{mIRC|$tanh}}
 +
* [[List of identifiers - mIRC]]
 +
{{mIRC identifier list}}

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)