Search found 2 matches
- Wed Dec 01, 2010 7:55 am
- Forum: Other Dialects
- Topic: help for a lisp
- Replies: 1
- Views: 10323
Re: help for a lisp
Try this one, ; process LINE (defun do_line (e / ent pt1 pt2 item) (setq ent (entget e)) (foreach item ent (cond ((= (car item) 10) (setq pt1 (cdr item)) ) ((= (car item) 11) (setq pt2 (cdr item)) ) ) ) (setq ent (subst (cons 10 pt2)(assoc 10 ent) ent)) (setq ent (subst (cons 11 pt1)(assoc 11 ent) e...
- Thu Nov 11, 2010 4:14 am
- Forum: Other Dialects
- Topic: HELP!!! How to supplement LISP
- Replies: 0
- Views: 8112
HELP!!! How to supplement LISP
[findinglisp: Moved to correct forum. Please categorize your posts. Autocad Lisp is not Common Lisp. Dear all, i`m working very often with huge longitudinal section, and in general with all kind of sections.So, as long as is generated in Civil3D, all sort of labeling precisely aligned in section.Bu...