Function Entry: FLOOR
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: FLOOR
Name
floor
Class
BricsCAD Extension Function
Syntax
(floor num)
Description
Returns the largest integer less than or equal to num.
Return Values
Vendor-defined; see Source Notes.
Side Effects
Vendor-defined.
Examples
Not documented in the BricsCAD-Specific LISP Functions catalogue page.
Availability
- AutoCAD 2026: not documented.
- BricsCAD V26: documented.
- Status: BricsCAD-only.
See Also
- AutoCAD has no
floor. For non-negative numbers,fixis equivalent; for negative numbers portable code uses(if (= n (fix n)) (fix n) (1- (fix n))).
Source Notes
- [floor (BricsCAD V26 DevRef)](https://developer.bricsys.com/bricscad/help/en_US/V26/DevRef/source/BricsCADLISPFunctions.htm)
- Status: documented (Phase 3 body fill from the BricsCAD V26 DevRef catalogue page).