 - (defun C:test(/ el tmp)
- (setq el (entget (car (entsel)) '("INCISE")))
- (setq tmp (cdadr (assoc -3 el)))
- (setq tmp (subst '(1011 100 0 0) (assoc 1011 tmp) tmp))
- (setq tmp (cons -3 (list (cons "INCISE" tmp))))
- (entmod (setq el (subst tmp (assoc -3 el) el)))
- (princ)
- )
|