Function Entry: VLE-VECTOR-ISUNITLENGTH

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

Function Entry: VLE-VECTOR-ISUNITLENGTH

Name

vle-vector-isunitlength

Class

BricsCAD VLE Library Function

Syntax

(vle-vector-isunitlength vec)

Arguments and Values

  • vec a 2d or 3d vector list

Description

This function returns whether vec has a length of 1.0 (1 unit length).

Return Values

T or NIL

Examples

(setq vec '(1 1
0))

(vle-vector-isunitlength v1 v2)

NIL

(setq vec '(0 1 0))

(vle-vector-isunitlength v1 v2)

T

Availability

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

Source Notes