Difference between revisions of "Math.modf"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Returns the integer and the fractional value of a number.
 
Returns the integer and the fractional value of a number.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) (number) = math.modf(value)
 
(number) (number) = math.modf(value)
 
</source>
 
</source>

Revision as of 15:28, 13 July 2023

Available since: Gideros 2011.6
Class: math

Description

Returns the integer and the fractional value of a number. <syntaxhighlight lang="lua"> (number) (number) = math.modf(value) </source>

Parameters

value: (number) number value

Return values

Returns (number) the integer value of the number
Returns (number) the fractional value of the number