Function Entry: VLE-VECTOR-ISEQUAL
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: VLE-VECTOR-ISEQUAL
Name
vle-vector-isequal
Class
BricsCAD VLE Library Function
Syntax
(vle-vector-isequal vec1 vec2)
Arguments and Values
- vec1 a 2d or 3d vector list
- vec2 a 2d or
- 3d vector list
Description
This function returns whether vector vec1 is equal to vector vec2.
Return Values
T or NIL
Examples
(setq v1 '(2 0 0) v2'(-2 0 0)) (vle-vector-isequal v1 v2) NIL (setq v1 '(2 0 0) v2'(2 0 0)) (vle-vector-isequal v1 v2) T
Notes
both arguments can as well be interpreted as 'points'; same as (equal vec1 vec2 {tolerance])
Availability
- AutoCAD 2026: not documented.
- BricsCAD V26: documented.
- Status: BricsCAD-only.
Source Notes
- [vle-vector-isequal (BricsCAD V26 DevRef)](https://developer.bricsys.com/bricscad/help/en_US/V26/DevRef/source/vle-vector-isequal.htm)
- Status: documented (Phase 3 follow-up: body filled from the BricsCAD V26 per-symbol page on 2026-04-26).