Message 1 of 13

Not applicable
08-02-2019
06:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have created a lisp where you select a line, choose a point to offset on, and multiple lines are created.
(if (and (setq ss (ssget "_+.:S:L" '((0 . "*POLYLINE,*LINE,CIRCLE,ELLIPSE")))) (setq p (getpoint "\nSpecify point:")) ) (progn (command "_.offset" 0.5 ss "_non" p "") (command "_.offset" 0.625 (ENTLAST) "_non" p "") (command "_.offset" 5.5 (ENTLAST) "_non" p "") ...
If the point chosen is passed by the multiple lines created, the the lines would offset going the opposite direction (back towards the point). I know this is how it is supposed to work, but I am wondering if there is a way to make all the lines offset going in the same direction. Any help would be greatly appreciated. Thanks!
Solved! Go to Solution.