Floor
Round down to nearest integer. 2.9 → 2, -1.1 → -2.
Block
Interactive preview is available in the interactive reader.
Parameters
input- Any number. Output is the largest integer ≤ input.
How it works
Floor always rounds toward negative infinity. Useful for discrete steps (e.g. layer index from height) or quantizing values.