Simple Pline but problem!!!

Discussion in 'AutoCAD' started by nygusik, Nov 2, 2006.

  1. nygusik

    nygusik Guest

    Hello!!!
    I am a 2D AutoCad 2006 operator and I found something interesting in my
    work and very annoying as well.
    When I am drawing a simple Polyline which is composed of Arcs and Lines
    everything is all right, but when I make this line wider then on the
    connection between arcs and lines I have funny gaps.

    Does somebody know any function or how to use Pline to not get these
    gaps?


    PS. Sorry for my English.

    Kind regerds Wojtek
     
    nygusik, Nov 2, 2006
    #1
  2. Break them into separate pieces at the gaps and let them overlap there.
     
    Michael Bulatovich, Nov 2, 2006
    #2
  3. nygusik

    M Guest

    Any reason you don't want to join them?
    Try to fillet with a tiny radius....
    OR
    use this lisp if you have alot of lines, plines or arcs.

    (defun c:pp ( / ss)
    (setvar "peditaccept" 1)
    (prompt "Select objects to join: ")
    (setq ss (ssget))
    (command "pedit" "m" ss "" "j" "0" "")
    (princ)
    )
     
    M, Nov 2, 2006
    #3
  4. I think he has one pline but is getting some funny rendering issues on very
    fat, very short line segments.
     
    Michael Bulatovich, Nov 2, 2006
    #4
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.