| Author |
Message |
cmedinag
Guest
|
Posted:
Sat Mar 19, 2005 3:48 am Post subject:
converting conected objects into polylines |
|
|
hi, have a code segment that only works for polilynes, and i want to apply it to a multiple-object 2d figure. is a closed figure and i've heard that you can convert a selection of objects into a polyline.. is this true? how can i acomplish that?
thanks!
|
|
| Back to top |
|
 |
Tony Tanzillo
Guest
|
Posted:
Sun Mar 20, 2005 12:10 am Post subject:
Re: converting conected objects into polylines |
|
|
Have you tried PEDIT/Join ?
--
http://www.caddzone.com
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005
http://www.acadxtabs.com
"cmedinag" <nospam@address.withheld> wrote in message
news:3331764.1111186163309.JavaMail.jive@jiveforum2.autodesk.com...
| Quote: | hi, have a code segment that only works for polilynes, and i want to apply it to a multiple-object 2d figure. is a
closed figure and i've heard that you can convert a selection of objects into a polyline.. is this true? how can i
acomplish that?
thanks! |
|
|
| Back to top |
|
 |
cmedinag
Guest
|
Posted:
Sun Mar 20, 2005 10:02 am Post subject:
Re: converting conected objects into polylines |
|
|
thanks! now.. how do i use it? i made a selection group and then call iT?
|
|
| Back to top |
|
 |
Alfred NESWADBA
Guest
|
Posted:
Sun Mar 20, 2005 3:09 pm Post subject:
Re: converting conected objects into polylines |
|
|
you could look into acad-help-file?
_pedit 'start command
_o 'option for multiple objects (acad2004 and higher)
<select all objects you want to join>
<enter>
_y 'convert to poly
'(this question may appear, depending on acad-variable in 2005)
_j 'join
<put a distance-value as fuzzy-tol>
<enter> 'finish command
- alfred -
In article <27580603.1111306060928.JavaMail.jive@jiveforum2.autodesk.com>, nospam@address.withheld says...
| Quote: | thanks! now.. how do i use it? i made a selection group and then call iT?
|
|
|
| Back to top |
|
 |
Joe Sutphin
Guest
|
Posted:
Tue Mar 22, 2005 8:23 pm Post subject:
Re: converting conected objects into polylines |
|
|
Take the coordinates of each individual line and use them as the coordinates
for creating a new polyline. Then delete the original line segments thus
giving the illusion of "converting" a group of connected line segments into
a single polyline.
Joe
--
"cmedinag" <nospam@address.withheld> wrote in message
news:3331764.1111186163309.JavaMail.jive@jiveforum2.autodesk.com...
| Quote: | hi, have a code segment that only works for polilynes, and i want to apply
it to a multiple-object 2d figure. is a closed figure and i've heard that
you can convert a selection of objects into a polyline.. is this true? how
can i acomplish that?
thanks! |
|
|
| Back to top |
|
 |
|
|
|
|