floor: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
==Function floor==
{{MacroFunction
Returns the number padded in if it is an integer, otherwise the number is rounded down to the nearest smaller integer and that value is returned.
|name=floor
|description=Returns the number padded in if it is an integer, otherwise the number is rounded down to the nearest smaller integer and that value is returned.


===Usage===
|usage=
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[h: result = floor(num)]
[h: result = floor(num)]
</source>
</source>


===Examples===
|examples=
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[r: floor(2)]
[r: floor(2)]
Line 22: Line 23:
</source>
</source>
Returns -2.
Returns -2.
}}
[[Category:Mathematical Function]]

Revision as of 02:32, 7 March 2009

floor() Function

Returns the number padded in if it is an integer, otherwise the number is rounded down to the nearest smaller integer and that value is returned.

Usage

[h: result = floor(num)]

Examples

[r: floor(2)]

Returns 2.

[r: floor(1.2)]

Returns 1.

[r: floor(-1.2)]
Returns -2.