Display full version of the post: Poly line joining

waynelem
29.08.2016, 00:03
Let's say I draw one a poly line horizontal and the next vertical some distance apart. When I use a 90deg chamfer to make a corner the lines are then joined as one. Is there a way to stop this as I would still like them to still be seperate lines?Wayne

waynelem
29.08.2016, 18:34
So this can't be done?

philippe JOSEPH
30.08.2016, 07:16

Hello Wayne, if you don't want the polylines to be united ( in one polyline ) then use the command LINE and not POLYLINE or you can explode the polyline.

waynelem
30.08.2016, 19:26
I need to show line width and if I explode the width is gone.

Robert_D
30.08.2016, 20:06
"BREAK" the polyline @ intersection?

waynelem
31.08.2016, 00:55
That is what I have done in the past. Just an extra step.Still hard to believe that you can't stop the joining in the first place.Thank

Robert_D
31.08.2016, 16:29
Rather than CHAMFER, use EXTEND?

waynelem
01.09.2016, 01:03
Done that.Thanks

Kent Cooper
01.09.2016, 16:41
[QUOTE=waynelem]I need to show line width and if I explode the width is gone.[/QUOTE]
 Try PolylineSubdivide.lsp with is PSD command, available here.  It will at least reduce your "extra step" to one command with a simple object selection, instead of your needing to select the Polyline, specify the First option and give it the corner twice [or even the selection and the corner pick if you have a built-in-First-option routine], or do multiple single-point Breaks if you have non-zero Chamfer distances. Of course, if you break them up like that, they will lose the angled ends that the Chamfered single Polyline has at the corners.
Kent Cooper2016-09-01 16:49:54

ktahameed
05.09.2016, 11:28
THANKS KENT