<-Back

Function: 3d-Vector-P

3D-VECTOR-P boolean

.

function:
3d-vector-p - predicate function to check if a vector is 3D. That is, the vector has 3 dimensions, representing a 3-dimensional vector.
usage:
3d-vector-p vector
description:
A predicate function to check if a vector is 3-dimensional. The function may also be accessed by calling the function 3d-vector?.
examples:
(3d-vector-p (make-vector 1 2 3)) --> t (3d-vector-p (make-vector 1 2 3 4)) --> nil

<-Back