Message 1 of 5
grread pline make
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hi, Im trying to use grread to see a preview of a pline with not so much luck
any help?
(defun c:PickList2() (setq PT_LIST nil) (while (while (setq PT (getpoint "\nPick a point: ")) ; (command "borra" "lt" "") (if (= PT_LIST nil) (setq PT_LIST (list PT)) (setq PT_LIST (append (list PT) PT_LIST)) ) );while (if (/= PT_LIST nil) (progn (command "_pline") (foreach PT PT_LIST (command PT)) (command "") ) );if );while (princ) )