<?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: Auto draw line between two objects in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7977130#M180893</link>
    <description>&lt;P&gt;Two things:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That looks more like a Polyline, given its width.&amp;nbsp; Is that what you want to draw, rather than Lines?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems to me you would need more than two clicks.&amp;nbsp; The suggestion from &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5952317"&gt;@j.palmeL29YX&lt;/a&gt;&amp;nbsp;would put the vertical leg &lt;EM&gt;halfway&lt;/EM&gt;&amp;nbsp; horizontally between the two picked points, but the image has it at a very different position.&amp;nbsp; Do you need a third pick for the position of the vertical leg?&lt;/P&gt;</description>
    <pubDate>Thu, 03 May 2018 12:56:53 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2018-05-03T12:56:53Z</dc:date>
    <item>
      <title>Auto draw line between two objects</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7976994#M180891</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Trying to figure out if there is a function/command that draw a straight line from object A, then goes down 90 degrees and continue to the end point of Object B. I want this to happen with only two clicks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See picture.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 11:58:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7976994#M180891</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-03T11:58:55Z</dc:date>
    </item>
    <item>
      <title>Betreff: Auto draw line between two objects</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7977110#M180892</link>
      <description>&lt;P&gt;AFAIK not with the core commands of AutoCAD. But some lines LISP will do the job - see screencast.&lt;/P&gt;&lt;P&gt;&lt;A href="https://autode.sk/2rgZmSo" target="_blank"&gt;https://autode.sk/2rgZmSo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And here the LISP code (quick and dirty):&lt;/P&gt;&lt;P&gt;(defun c:jagline (/ p1 p2 p3 p4)&lt;BR /&gt;&amp;nbsp; (setq&amp;nbsp;&amp;nbsp; &amp;nbsp;p1 (getpoint "\nFrom: ")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;p2 (getpoint "\nTo: ")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;p3 (list (/ (+ (car p1) (car p2)) 2.0) (cadr p1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;p4 (list (/ (+ (car p1) (car p2)) 2.0) (cadr p2))&lt;BR /&gt;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp; (command "_line" p1 p3 p4 p2 "")&lt;BR /&gt;&amp;nbsp; (princ)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 12:49:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7977110#M180892</guid>
      <dc:creator>j.palmeL29YX</dc:creator>
      <dc:date>2018-05-03T12:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Auto draw line between two objects</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7977130#M180893</link>
      <description>&lt;P&gt;Two things:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That looks more like a Polyline, given its width.&amp;nbsp; Is that what you want to draw, rather than Lines?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems to me you would need more than two clicks.&amp;nbsp; The suggestion from &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5952317"&gt;@j.palmeL29YX&lt;/a&gt;&amp;nbsp;would put the vertical leg &lt;EM&gt;halfway&lt;/EM&gt;&amp;nbsp; horizontally between the two picked points, but the image has it at a very different position.&amp;nbsp; Do you need a third pick for the position of the vertical leg?&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 12:56:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7977130#M180893</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-05-03T12:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: Auto draw line between two objects</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7977230#M180894</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;schrieb:&amp;nbsp; Do you need a third pick for the position of the vertical leg?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Of course: if the position of the vertical line is restricted than a third information (third pickpoint)&amp;nbsp; is urgently necessary.&lt;BR /&gt;And to substitute the line command by the pline command is not a problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cadder&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 13:26:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7977230#M180894</guid>
      <dc:creator>j.palmeL29YX</dc:creator>
      <dc:date>2018-05-03T13:26:24Z</dc:date>
    </item>
    <item>
      <title>Betreff: Auto draw line between two objects</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7979401#M180895</link>
      <description>&lt;P&gt;Hi, is it possible to have something similar but with polyline?&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 06:42:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7979401#M180895</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-04T06:42:50Z</dc:date>
    </item>
    <item>
      <title>Betreff: Auto draw line between two objects</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7979474#M180896</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymousschrieb:&lt;BR /&gt;&lt;P&gt;Hi, is it possible to have something similar but with polyline?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;In the LISP code you have to add only a "p". Change the&lt;/P&gt;&lt;P&gt;(command "_line" ...)&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;(command "_pline" ...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cadder&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 07:23:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/7979474#M180896</guid>
      <dc:creator>j.palmeL29YX</dc:creator>
      <dc:date>2018-05-04T07:23:56Z</dc:date>
    </item>
    <item>
      <title>Betreff: Auto draw line between two objects</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/10316563#M180897</link>
      <description>&lt;P&gt;Hello, I'm new to this Lisp thing in AutoCad but I have a question&lt;/P&gt;&lt;P&gt;What if instead of 4 points I only require 3 with a fillet on the 3rd point?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 May 2021 18:22:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/10316563#M180897</guid>
      <dc:creator>vmiguel.patron21</dc:creator>
      <dc:date>2021-05-16T18:22:25Z</dc:date>
    </item>
    <item>
      <title>Betreff: Auto draw line between two objects</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/10317391#M180898</link>
      <description>&lt;P&gt;Something like this:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(defun c:jagline (/ p1 p2 p3 radius)
  (setq radius (getdist "\nRadius: "))
  (setq	p1 (getpoint "\nFrom: ")
	p2 (getpoint "\nTo: ")
	p3 (list (car p2) (cadr p1))
  )
  (command "_pline" p1 p3 p2 "")
  (command "fillet" "_P" "_L" "_R" radius)
  (princ)
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2021 06:58:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/auto-draw-line-between-two-objects/m-p/10317391#M180898</guid>
      <dc:creator>j.palmeL29YX</dc:creator>
      <dc:date>2021-05-17T06:58:42Z</dc:date>
    </item>
  </channel>
</rss>

