<?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: LISP TO DRAW  LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441956#M40672</link>
    <description>&lt;P&gt;these are the different scrips I'm using .&lt;/P&gt;</description>
    <pubDate>Fri, 23 Sep 2022 18:19:25 GMT</pubDate>
    <dc:creator>jlicerioAQQLC</dc:creator>
    <dc:date>2022-09-23T18:19:25Z</dc:date>
    <item>
      <title>LISP TO DRAW  LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441919#M40665</link>
      <description>&lt;P&gt;; lisp to draw hor lines plus 45's between 2 points&lt;BR /&gt;; By BIGAL Jan 2012&lt;BR /&gt;(defun c:1()&lt;BR /&gt;(vl-load-com)&lt;BR /&gt;(setq pt1 (getpoint "\npick 1st point on terminal bar"))&lt;BR /&gt;(setq pt2 (getpoint "\npick 2nd point "))&lt;BR /&gt;; ang2 is horiz lines ang3 is 45 lines&lt;BR /&gt;(setq ang1 (angle pt1 pt2))&lt;BR /&gt;(setq ang2 0.0)(setq ang3 (* 0.5 pi))&lt;BR /&gt;(setq pt3 (polar pt1 ang2 20.0))&lt;BR /&gt;(setq pt4 (polar pt2 ang3 20.0))&lt;BR /&gt;(setq pt5 (inters pt1 pt3 pt2 pt4 nil))&lt;BR /&gt;(command "pline" pt1 pt5 pt2 "")&lt;BR /&gt;)&lt;BR /&gt;(princ)&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:13:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441919#M40665</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441927#M40666</link>
      <description>&lt;P&gt;; lisp to draw hor lines plus 45's between 2 points&lt;BR /&gt;; By BIGAL Jan 2012&lt;BR /&gt;(defun c:4 ()&lt;BR /&gt;(setq pt1 (getpoint "\npick 1st point on terminal bar"))&lt;BR /&gt;(setq pt2 (getpoint "\npick 2nd point "))&lt;BR /&gt;(setq pt3 (getpoint "\npick 3rd point "))&lt;BR /&gt;; ang2 is horiz lines ang3 is 45 lines&lt;BR /&gt;(setq ang1 (angle pt1 pt2))&lt;BR /&gt;(setq ang4 (angle pt2 pt3))&lt;BR /&gt;(cond&lt;BR /&gt;((&amp;gt; ang1 4.412388)(setq ang2 0.0)(setq ang3 (* 0.5 pi)))&lt;BR /&gt;((&amp;gt; ang1 pi)(setq ang2 pi)(setq ang3 (* 0.5 pi)))&lt;BR /&gt;((&amp;gt; ang1 (/ pi 2.0))(setq ang2 PI)(setq ang3 (* 0.5 pi)))&lt;BR /&gt;((&amp;gt; ang1 0.0)(setq ang2 0.0)(setq ang3 (* 0.5 pi)))&lt;BR /&gt;;((&amp;gt; ang4 4.412388)(setq ang5 0.0)(setq ang6 (* 0.5 pi)))&lt;BR /&gt;;((&amp;gt; ang4 pi)(setq ang5 pi)(setq ang6 (* 0.5 pi)))&lt;BR /&gt;;((&amp;gt; ang4 (/ pi 2.0))(setq ang5 PI)(setq ang6 (* 0.5 pi)))&lt;BR /&gt;;((&amp;gt; ang4 0.0)(setq ang5 0.0)(setq ang6 (* 0.5 pi)))&lt;BR /&gt;)&lt;BR /&gt;(setq pt9 (polar pt1 ang3 20.0))&lt;BR /&gt;(setq pt4 (polar pt2 ang2 20.0))&lt;BR /&gt;(setq pt5 (inters pt1 pt9 pt2 pt4 nil))&lt;BR /&gt;(setq pt6 (polar pt2 ang2 20.0))&lt;BR /&gt;(setq pt7 (polar pt3 ang3 20.0))&lt;BR /&gt;(setq pt8 (inters pt2 pt6 pt3 pt7 nil))&lt;BR /&gt;(command "pline" pt1 pt5 pt8 pt3 "")&lt;BR /&gt;;(command "pline" pt2 pt8 pt3 "")&lt;BR /&gt;)&lt;BR /&gt;(princ)&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:09:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441927#M40666</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441933#M40667</link>
      <description>Sort of like FILLET or CHAMFER commands can create?&lt;BR /&gt;and what length are the 45s? And are they all the same length everywhere?&lt;BR /&gt;&lt;BR /&gt;Can you share screenshots of BEFORE and AFTER?&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:11:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441933#M40667</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2022-09-23T18:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441937#M40668</link>
      <description>Trying to make a line that is continuous from point to point it is for wire from block to block.</description>
      <pubDate>Fri, 23 Sep 2022 18:12:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441937#M40668</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441942#M40669</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jlicerioAQQLC_0-1663956830163.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1119935iF326604AE28181F8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jlicerioAQQLC_0-1663956830163.png" alt="jlicerioAQQLC_0-1663956830163.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:13:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441942#M40669</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441947#M40670</link>
      <description>&lt;P&gt;I use it here but I have to join the lines every time want to make something that automatically joins after each point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:15:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441947#M40670</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441951#M40671</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="x.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1119937iF962F86CB120DAFD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="x.png" alt="x.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; this is the way it works at the moment all separate lisp code .&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:17:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441951#M40671</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW  LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441956#M40672</link>
      <description>&lt;P&gt;these are the different scrips I'm using .&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:19:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441956#M40672</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW  LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441961#M40673</link>
      <description>They all pertain to the image defun 1 2 3 4 ll above.</description>
      <pubDate>Fri, 23 Sep 2022 18:20:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441961#M40673</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441985#M40674</link>
      <description>&lt;P&gt;It's not clear to me what you're asking.&amp;nbsp; One thing I notice, though:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;....&lt;BR /&gt;; ang2 is horiz lines &lt;FONT color="#FF00FF"&gt;ang3&lt;/FONT&gt; is &lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;45&lt;/FONT&gt;&lt;/STRONG&gt; lines&lt;BR /&gt;....
&lt;P class="1663957766943"&gt;....&amp;nbsp;&lt;SPAN&gt;(setq &lt;FONT color="#FF00FF"&gt;ang3&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;(* 0.5 pi)&lt;/FONT&gt;&lt;/STRONG&gt;))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="1663957766943"&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;(* 0.5 pi)&lt;/FONT&gt;&amp;nbsp;in radians is &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;90°&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;, not &lt;FONT color="#0000FF"&gt;45°&lt;/FONT&gt;.&amp;nbsp; Should it be &lt;STRONG&gt;(* pi 0.25)&lt;/STRONG&gt; and &lt;STRONG&gt;(* pi 0.75)&lt;/STRONG&gt; and &lt;STRONG&gt;(* pi 1.25)&lt;/STRONG&gt; and &lt;STRONG&gt;(* pi 1.75)&lt;/STRONG&gt; in the different conditions?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:35:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11441985#M40674</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-09-23T18:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442002#M40675</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12036519"&gt;@jlicerioAQQLC&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt; this is the way it works at the moment all separate lisp code .&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Forgive me, but both of your images are not really BEFORE/AFTER, could you try again by editing manually if needed to show what you want vs. what you are stuck with today&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-inline" image-alt="jlicerioAQQLC_0-1663956830163.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1119948i43120EE2706C4901/image-size/large?v=v2&amp;amp;px=999" role="button" title="jlicerioAQQLC_0-1663956830163.png" alt="jlicerioAQQLC_0-1663956830163.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="x.png" style="width: 604px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1119947i473E346D3255A186/image-size/large?v=v2&amp;amp;px=999" role="button" title="x.png" alt="x.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:42:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442002#M40675</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2022-09-23T18:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442005#M40676</link>
      <description>&lt;P&gt;What I'm trying to get is a lisp code that is continuous pline this one I'm using only goes from point a to point b and then I have to make a new line.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jlicerioAQQLC_0-1663958651146.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1119949iA0CE4AC20F004984/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jlicerioAQQLC_0-1663958651146.png" alt="jlicerioAQQLC_0-1663958651146.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:50:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442005#M40676</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442010#M40677</link>
      <description>&lt;P&gt;&lt;BR /&gt;These are 3 separate plines that were made with the script. Im trying to make it one pline from block to block that can continue.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:51:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442010#M40677</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442013#M40678</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jlicerioAQQLC_0-1663958855743.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1119950iFD25376E72A4256A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jlicerioAQQLC_0-1663958855743.png" alt="jlicerioAQQLC_0-1663958855743.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Had to join it manualy here.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:48:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442013#M40678</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442021#M40679</link>
      <description>May I ask why you don't just use PLINE command (aka no LISP) if that is all you wish to create?&lt;BR /&gt;Or is there supposed to be 45degree chamfered corners when there is no block either (and you need the lisp to figure out if there is a block or not)?&lt;BR /&gt;&lt;BR /&gt;TIA</description>
      <pubDate>Fri, 23 Sep 2022 18:50:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442021#M40679</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2022-09-23T18:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442038#M40680</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jlicerioAQQLC_0-1663959423468.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1119957i2E4569F5A4C00A85/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jlicerioAQQLC_0-1663959423468.png" alt="jlicerioAQQLC_0-1663959423468.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;this is the feature I'm trying to obtain. But I want to add more customization.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:57:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442038#M40680</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T18:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442048#M40681</link>
      <description>&lt;P&gt;I also want to also add a number sequencer with in the command.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun C:SEQ (/ Inc_Num Att_Name Pre)&lt;BR /&gt;(vl-load-com)&lt;BR /&gt;(setq Att_Name (getstring "\nInput Tag Name: "))&lt;BR /&gt;(setq Inc_Num (getint "\nInput Starting Number: "))&lt;BR /&gt;(while (setq BLK (entget (car(entsel "\nSelect Attribute/Block: "))))&lt;BR /&gt;(progn&lt;BR /&gt;(setq Data (cdr (assoc -1 BLK)))&lt;BR /&gt;(setq obj (vlax-ename-&amp;gt;vla-object Data))&lt;BR /&gt;(foreach att (vlax-invoke Obj 'GetAttributes)&lt;BR /&gt;(if (= (vla-get-Tagstring att) Att_Name)&lt;BR /&gt;(progn&lt;BR /&gt;(setq Pre (vla-get-Textstring att))&lt;BR /&gt;(setq New_Inp (strcat Pre (rtos Inc_Num 2 0)))&lt;BR /&gt;(vla-put-Textstring att New_Inp)&lt;BR /&gt;)&lt;BR /&gt;);if&lt;BR /&gt;);foreach&lt;BR /&gt;(setq Inc_Num (+ Inc_Num 1))&lt;BR /&gt;);progn&lt;BR /&gt;)&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 19:03:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442048#M40681</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T19:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442085#M40682</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12036519"&gt;@jlicerioAQQLC&lt;/a&gt;&amp;nbsp;You could use a hatch mask (color 255,255,255) or wipeout in your blocks so no need for trimming.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 19:17:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442085#M40682</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-09-23T19:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442096#M40683</link>
      <description>&lt;P&gt;The aesthetics isn't a big problem it is that the line has to be joined to get the length of the wire.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 19:23:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442096#M40683</guid>
      <dc:creator>jlicerioAQQLC</dc:creator>
      <dc:date>2022-09-23T19:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: LISP TO DRAW HORIZONTAL LINES FROM POINT TO POINT NEED IT TO AUTO JOIN TO NEXT POINT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442103#M40684</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12036519"&gt;@jlicerioAQQLC&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The aesthetics isn't a big problem it is that the line has to be joined to get the length of the wire.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;As mentioned before, why not use&amp;nbsp; a polyline ? Code is not needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/double-click-attributes-to-eidt-with-attipedit/m-p/8559642#M380258" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;THIS&lt;/STRONG&gt;&lt;/A&gt; can help you with your attribute numbering.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 19:29:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-draw-lines-from-point-to-point-need-it-to-auto-join-to/m-p/11442103#M40684</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-09-23T19:29:18Z</dc:date>
    </item>
  </channel>
</rss>

