Display full version of the post: Polylines?

Marciano
15.09.2009, 07:17

How do you join multiple lines into one solid shape that can be extruded? I scanned drawings into a raster program that converted them to .dwg's but I cant figure out how to make the shapes connect into one solid unitI'm using Autocad 2000
Marciano2009-09-15 07:42:52

Pitstop
15.09.2009, 12:37
You can pedit them to join, lines together, but may find some are not closed but to the process they have come from.
 
You could also try this lisp to join them
 
(defun c:JP (/ ss)  (and (setq ss (ssget ":L" '((0 . "ARC,*POLYLINE,LINE"))))       (if (zerop (getvar "peditaccept"))         (command "_.pedit" "_m" ss "" "_y" "_j" "" "")         (command "_.pedit" "_m" ss "" "_j" "" "")       ) ;_ if  ) ;_ and  (princ)) ;_ defun

Vladimir Michl
15.09.2009, 13:17
You can try the [CMD]JOIN[/CMD] or [CMD]PLJOIN[/CMD] or [CMD]PEDIT[/CMD] Join commands.

Marciano
16.09.2009, 06:44
Thank you! PLJOIN worked, i was trying the other two commands but to no avail. Now I can extrude them and send them out to be fabricated.