<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Grread polyline draw with arc option in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9213364#M80381</link>
    <description>&lt;P&gt;My time and effort is on your answer.&lt;/P&gt;</description>
    <pubDate>Fri, 20 Dec 2019 05:40:19 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2019-12-20T05:40:19Z</dc:date>
    <item>
      <title>Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9209243#M80363</link>
      <description>&lt;P&gt;I made a lisp that draws a polyline with grread.&lt;/P&gt;&lt;P&gt;I want to switch to arc while drawing the polyline with my grread function.&lt;/P&gt;&lt;P&gt;How can it be made to be the same as the autocad polyline draw arc option while drawing a polyline?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 12:10:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9209243#M80363</guid>
      <dc:creator>office</dc:creator>
      <dc:date>2019-12-18T12:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9209281#M80364</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1051067"&gt;@office&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you considered this instead?&lt;/P&gt;&lt;PRE&gt;(command-s "_.PLINE")&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 12:30:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9209281#M80364</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2019-12-18T12:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9209302#M80365</link>
      <description>&lt;P&gt;Not good.&lt;/P&gt;&lt;P&gt;I need grread solution. When the polyline is drawn there is custom options for the polyline and custom objects drawn on thepolyline.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 12:40:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9209302#M80365</guid>
      <dc:creator>office</dc:creator>
      <dc:date>2019-12-18T12:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9209391#M80366</link>
      <description>&lt;P&gt;Try to integrate this for arc?:&lt;/P&gt;&lt;PRE&gt;((lambda ( / p1 p2 ll pt_m px1 px2 key p3 px3 px4 pt_cen rad inc ang nm lst_pt pa1 pa2)
  (initget 9)
  (setq p1 (getpoint "\nFirst point: "))
  (initget 9)
  (setq p2 (getpoint p1 "\nNext point: "))
  (setq
    ll (list p1 p2)
    pt_m
    (mapcar
      '/
      (list
        (apply '+ (mapcar 'car ll))
        (apply '+ (mapcar 'cadr ll))
        (apply '+ (mapcar 'caddr ll))
      )
      '(2.0 2.0 2.0)
    )
    px1 (polar pt_m (+ (angle p1 p2) (* pi 0.5)) (distance p1 p2))
    px2 (polar pt_m (- (angle p1 p2) (* pi 0.5)) (distance p1 p2))
  )
  (princ "\nLast point: ")
  (while (and (setq key (grread T 4 0)) (/= (car key) 3))
    (cond
      ((eq (car key) 5)
        (redraw)
        (setq
          p3 (cadr key)
          ll (list p1 p3)
          pt_m
          (mapcar
            '/
            (list
              (apply '+ (mapcar 'car ll))
              (apply '+ (mapcar 'cadr ll))
              (apply '+ (mapcar 'caddr ll))
            )
            '(2.0 2.0 2.0)
          )
          px3 (polar pt_m (+ (angle p1 p3) (* pi 0.5)) (distance p1 p3))
          px4 (polar pt_m (- (angle p1 p3) (* pi 0.5)) (distance p1 p3))
          pt_cen (inters px1 px2 px3 px4 nil)
        )
        (cond
          (pt_cen
            (setq 
              rad (distance pt_cen p3)
              inc (angle pt_cen p1)
              ang (+ (* 2.0 pi) (angle pt_cen p3))
              nm (fix (/ (rem (- ang inc) (* 2.0 pi)) (/ (* pi 2.0) 36.0)))
              lst_pt '()
            )
            (if (zerop nm) (setq nm 1))
            (repeat nm
              (setq
                pa1 (polar pt_cen inc rad)
                inc (+ inc (/ (* pi 2.0) 36.0))
                pa2 (polar pt_cen inc rad)
                lst_pt (append lst_pt (list pa1 pa2))
              )
            )
            (setq lst_pt (append lst_pt (list pa2 p3)))
            (grvecs lst_pt)
          )
        )
      )
    )
  )
  (prin1)
))&lt;/PRE&gt;</description>
      <pubDate>Wed, 18 Dec 2019 13:20:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9209391#M80366</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2019-12-18T13:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9210020#M80367</link>
      <description>&lt;P&gt;Interesting but it is not acting the same as the polyline arc option. &lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://through-the-interface.typepad.com/through_the_interface/2010/12/jigging-an-autocad-polyline-with-arc-segments-using-net.html" target="_blank"&gt;https://through-the-interface.typepad.com/through_the_interface/2010/12/jigging-an-autocad-polyline-with-arc-segments-using-net.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This one is a .net sample and works perfect.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 16:58:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9210020#M80367</guid>
      <dc:creator>office</dc:creator>
      <dc:date>2019-12-18T16:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9210505#M80368</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1051067"&gt;@office&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As Kean stated in the link you provided..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;SPAN&gt;"...this implementation is some way from re-implementing the full PLINE command..."&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;..it may become evident about just HOW HARD it would be to provide you with a full solution. Kean's code is already quite lengthy and is also written in a MUCH more capable language..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you choose to continue toward a solution with LISP then some sacrifices will be made (you may already know this since you *presumably already have some code attempting to create PLINE segments while also using the grread function).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without knowing the full extent of your current code, I would possibly try an approach using a combination of&amp;nbsp;&lt;EM&gt;getpoint&lt;/EM&gt; and &lt;EM&gt;entmake&lt;/EM&gt; inside of a&amp;nbsp;&lt;EM&gt;while&lt;/EM&gt; loop&lt;EM&gt;.&amp;nbsp;&lt;/EM&gt;You will not get transient graphics this way but that's one of the sacrifices to be made when using LISP.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe you can give us more information as to what your full program is trying to accomplish and we can suggest some alternate approaches? I'm not sure what benefit you're trying to accomplish by using grread and creating polylines anyways? grread does not support snaps.. and even if you are using Lee's grsnap function it would still appear to be a large recreation of the PLINE command, when it may not be necessary..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 20:34:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9210505#M80368</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2019-12-18T20:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9210911#M80369</link>
      <description>&lt;P&gt;This may be useful its dynamic change a fillet. By Cad guru&amp;nbsp;&lt;FONT&gt;&amp;nbsp; ;; Alan J. Thompson&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 02:18:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9210911#M80369</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2019-12-19T02:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211062#M80370</link>
      <description>&lt;P&gt;Here is 2 screenshots.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Grread1.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/709521iFE178ABAD178143B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Grread1.png" alt="Grread1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Grread2.png" style="width: 831px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/709524i49E2A0FAFF0F9684/image-size/large?v=v2&amp;amp;px=999" role="button" title="Grread2.png" alt="Grread2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The red line, red arrow and red circle is the grdraw and when I click the polyline coordinates are updated and there is inserted an arrow and a circle. And here I need the arc option.&lt;/P&gt;&lt;P&gt;At the command prompt I have custom options.&lt;/P&gt;&lt;P&gt;For osnap in the grread loop I use&amp;nbsp; (setq osnapPoint (osnap grPoint "_end,_nea")) and if the osnapPoint not nil it means osnap is found and I draw to osnapPoint and not to grPoint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 06:14:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211062#M80370</guid>
      <dc:creator>office</dc:creator>
      <dc:date>2019-12-19T06:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211496#M80371</link>
      <description>&lt;P&gt;What's the workflow? Is there any point where is required to change the custom setting &lt;EM&gt;during&lt;/EM&gt; drawing a polyline?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 09:30:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211496#M80371</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2019-12-19T09:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211562#M80372</link>
      <description>&lt;P&gt;When you press 'a' and enter or space it should switch to arc draw.&lt;/P&gt;&lt;P&gt;There are other options too, like angle step, if you set it to 5 degrees, the grdraw is drawing in only in every 5 degrees.&lt;/P&gt;&lt;P&gt;The main problem is to be able to switch to arc like the autocad's polyline drawing arc option.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 10:14:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211562#M80372</guid>
      <dc:creator>office</dc:creator>
      <dc:date>2019-12-19T10:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211586#M80373</link>
      <description>&lt;P&gt;My question was heading elsewhere - is the whole thing with 'grread' even worth it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:PlineAdvanced ( / opt)
  
  (setq opt (getpoint "\nStart a polyline or [Pipe data/Draw options]: "))
  (if (= 'list (type opt)) (command-s "_.pline" "_non" opt))
  (setq opt (getkword "\nAdjust the setting [Pipe data/Draw options] &amp;lt;done&amp;gt;: "))
  (princ)
 )
&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Dec 2019 10:29:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211586#M80373</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2019-12-19T10:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211648#M80374</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Grread1.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/709605i9B13C41A9F440320/image-size/large?v=v2&amp;amp;px=999" role="button" title="Grread1.png" alt="Grread1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to draw with grread line, triangle and circle as you see the red objects on the screenshot . So this is why I use the grread to draw mi custom object. And here would be nice the arc option with grread.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 10:48:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211648#M80374</guid>
      <dc:creator>office</dc:creator>
      <dc:date>2019-12-19T10:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211765#M80375</link>
      <description>&lt;P&gt;Definitely.&amp;nbsp;That would be nice if it weren't so complicated.&lt;/P&gt;
&lt;P&gt;I could be wrong. Someone could surprise me and dive into geometry books for a couple of hours and make the code done. My guess is this is not going to happen. Better think of alternatives.&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 11:37:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211765#M80375</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2019-12-19T11:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211815#M80376</link>
      <description>&lt;P&gt;If i'm understanding you correctly, you want a polyline with direction arrows in the middle of each segment and circles at each vertex. If that is the case, why not draw a normal polyline and then just add these graphics after the pline is done.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 12:02:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9211815#M80376</guid>
      <dc:creator>doaiena</dc:creator>
      <dc:date>2019-12-19T12:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9212007#M80377</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1051067"&gt;@office&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Interesting but it is not acting the same as the polyline arc option. &lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://through-the-interface.typepad.com/through_the_interface/2010/12/jigging-an-autocad-polyline-with-arc-segments-using-net.html" target="_blank" rel="noopener"&gt;https://through-the-interface.typepad.com/through_the_interface/2010/12/jigging-an-autocad-polyline-with-arc-segments-using-net.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This one is a .net sample and works perfect.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It is not possible to draw an "arc" using "grread" and "grdraw" as "grdraw" can only draw a vector between two points, see &lt;A href="http://help.autodesk.com/view/ACD/2015/ENU/?guid=GUID-C00544A7-AF63-403E-98EB-205248EB4F54" target="_blank" rel="noopener"&gt;HERE&lt;/A&gt; , so you will never get an arc segment, only a series of straight lines approximating an arc.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 13:24:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9212007#M80377</guid>
      <dc:creator>dlanorh</dc:creator>
      <dc:date>2019-12-19T13:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9212447#M80378</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1166654"&gt;@doaiena&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;If i'm understanding you correctly, you want a polyline with direction arrows in the middle of each segment and circles at each vertex. If that is the case, why not draw a normal polyline and then just add these graphics after the pline is done.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I agree. It can only be a nice looking visual effect. If it can be achieved it would take some serious coding. Question is if this question is needed in a production program or is asked just "for fun".&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 16:44:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9212447#M80378</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2019-12-19T16:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9212833#M80379</link>
      <description>&lt;P&gt;Maybe &lt;A href="http://www.theswamp.org/index.php?topic=28917.msg345010#msg345010" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;THIS&lt;/STRONG&gt;&lt;/A&gt; will give you some ideas. As stated before why is grread necessary?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 19:54:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9212833#M80379</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2019-12-19T19:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9212968#M80380</link>
      <description>&lt;P&gt;Quick example only using circles with 0.1 size radius:&lt;/P&gt;&lt;PRE&gt;(defun c:foo (/ _drawpolyline e i)
  ;; RJP » 2019-12-19
  (defun _drawpolyline (/ a r)
    (setq a (entlast))
    (if	(vl-catch-all-error-p
	  (vl-catch-all-apply
	    '(lambda (/)
	       (vl-cmdf "_.pline")
	       (while (&amp;gt; (getvar 'cmdactive) 0) (command "\\"))
	       (or (equal a (entlast)) (setq r (entlast)))
	     )
	  )
	)
      (progn (princ "\nUndid start point!! Bye!") (command))
      r
    )
  )
  (cond	((setq e (_drawpolyline))
	 (setq i 0)
	 (entmod (append (entget e) '((62 . 1))))
	 (while	(&amp;lt;= i (vlax-curve-getendparam e))
	   (entmakex (list '(0 . "circle")
			   '(8 . "circlelayer")
			   '(40 . 0.1)
			   (cons 10 (vlax-curve-getpointatparam e i))
		     )
	   )
	   (setq i (+ 0.5 i))
	 )
	)
  )
  (princ)
)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 21:14:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9212968#M80380</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2019-12-19T21:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9213364#M80381</link>
      <description>&lt;P&gt;My time and effort is on your answer.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2019 05:40:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9213364#M80381</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2019-12-20T05:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Grread polyline draw with arc option</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9215223#M80382</link>
      <description>&lt;P&gt;Thank you all for your answers.&lt;/P&gt;&lt;P&gt;I made the polyline draw with arc support using grread.&lt;/P&gt;&lt;P&gt;Thanks to CADaStroumph's&amp;nbsp;&lt;SPAN class=""&gt;arc sample, I made some changes to that function to be the same as the polyline arc option.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I attached the lisp file. You can try it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;It works only in World UCS.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Dec 2019 09:27:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/grread-polyline-draw-with-arc-option/m-p/9215223#M80382</guid>
      <dc:creator>office</dc:creator>
      <dc:date>2019-12-21T09:27:03Z</dc:date>
    </item>
  </channel>
</rss>

