Function Entry: VLE-VECTOR-ISZEROLENGTH

← Prev | ↑ Chapter | Next → | Index | Symbols

Function Entry: VLE-VECTOR-ISZEROLENGTH

Name

vle-vector-iszerolength

Class

BricsCAD VLE Library Function

Syntax

(vle-vector-iszerolength vec)

Arguments and Values

  • vec a 2d or 3d vector list

Description

This function returns whether vec has a length of 0.0 (zero length).

Return Values

T or NIL

Examples

(setq vec '(1 1
0))

(vle-vector-iszerolength v1 v2)

NIL

(setq vec '(0 0 0))

(vle-vector-iszerolength v1 v2)

T

Notes

if vec is interpreted as point, then it compares as "equal to point (0 0 0)"

Availability

  • AutoCAD 2026: not documented.
  • BricsCAD V26: documented.
  • Status: BricsCAD-only.

Source Notes