floor()#

Calculates the closest int value that is less than or equal to the value of the parameter.

Examples#

def setup():
    x = 2.88
    a = py5.floor(x)  # Sets 'a' to 2

Description#

Calculates the closest int value that is less than or equal to the value of the parameter.

This function makes a call to the numpy floor() function.

Signatures#

floor(
    value: Union[float, npt.ArrayLike]  # number to round down
) -> Union[int, npt.NDArray]

Updated on March 06, 2023 02:49:26am UTC