Added delete all points

This commit is contained in:
2019-05-06 13:29:20 +02:00
parent 303cc62b05
commit e6456bce4b
2 changed files with 12 additions and 0 deletions

View File

@@ -23,6 +23,17 @@
)
dax
;------------------------------------------------------------
;deleteAllPoints: deletes all points in modelspace
(defun C:dap (/ ss)
(graphscr)
(setq ss (ssget "_A" '((0 . "POINT"))))
(if ss
(command "._erase" ss "")
)
(princ)
)
dap
;------------------------------------------------------------
;rxl.lsp: removes xlines from blocks:
(defun c:rxl (/ b d l lo nl x)
;; RJP - 04.30.2018