Difference between revisions of "Equals"
From King Arthur's Gold Wiki
Shadlington (Talk | contribs) (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...") |
Shadlington (Talk | contribs) |
||
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 14:16, 6 September 2012
Returns true if the two given floats are equal, otherwise false.
bool Maths::Equals(float a, float b)