Les fonctions: MAT-XY.LSP

;************************************************************************
;* [CMFAO] AME 6602 ACQUISITION DES DONNÉES SPATIALES                   *
;* [GRCAO] Claude Parisel                                               *
;* Mars 1999                                                            *
;************************************************************************
; MAT-XY
; matrice de projection orthogonale sur XOY
;------------------------------------------------------------------------
(defun mat-xy ()
  (list
    (list 1.0 0.0 0.0 0.0)
    (list 0.0 1.0 0.0 0.0)
    (list 0.0 0.0 0.0 0.0)
    (list 0.0 0.0 0.0 1.0)
  )
)
;------------------------------------------------------------------------