Difference between revisions of "Equals"

From King Arthur's Gold Wiki
Jump to: navigation, search
(Created page with "<onlyinclude> Returns true if the two given floats are equal, otherwise false. </onlyinclude> <syntaxhighlight lang="cpp"> bool Equals(float a, float b) </syntaxhighlight> [[Cat...")
 
Line 3: Line 3:
 
</onlyinclude>
 
</onlyinclude>
 
<syntaxhighlight lang="cpp">
 
<syntaxhighlight lang="cpp">
bool Equals(float a, float b)
+
bool Maths::Equals(float a, float b)
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
[[Category:Scripting]]
 
[[Category:Scripting]]
 
[[Category:Global Functions]]
 
[[Category:Global Functions]]

Revision as of 15:16, 6 September 2012

Returns true if the two given floats are equal, otherwise false.

bool Maths::Equals(float a, float b)