<?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: Fillet command where two lines meet at the same coordinates in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8558610#M93745</link>
    <description>&lt;P&gt;Appreciated John, would you happen to have any tips for the filleting at the ID and the trimming by any chance?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Jan 2019 16:50:23 GMT</pubDate>
    <dc:creator>craig-s-sunderland</dc:creator>
    <dc:date>2019-01-29T16:50:23Z</dc:date>
    <item>
      <title>Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541472#M93720</link>
      <description>&lt;P&gt;Good evening&lt;/P&gt;
&lt;P&gt;I have two lines being drawn via lisp and the calculated coordinates that one end of each of the lines meet needs to be filleted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sadly I haven't got this working yet as when specifying the same coordinates twice in the command (first and second selection) results in an error specifying&amp;nbsp;I am trying to fillet the same entity twice...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could one of the experts shed some light on where I have gone wrong?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 20:17:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541472#M93720</guid>
      <dc:creator>craig-s-sunderland</dc:creator>
      <dc:date>2019-01-22T20:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541482#M93721</link>
      <description>&lt;P&gt;Post the code.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 20:22:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541482#M93721</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2019-01-22T20:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541590#M93722</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4612322"&gt;@craig-s-sunderland&lt;/a&gt;&amp;nbsp;hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we are talking about FILLET command, yes?!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can not pick&amp;nbsp;the 2 lines pointing on the same&amp;nbsp;point. you always will end up with 1 result.&lt;/P&gt;
&lt;P&gt;instead use the meeting point to offset back along the lines&amp;nbsp;to their other point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;here is a quick sample&amp;nbsp;i made to show you how it should work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;enjoy&lt;/P&gt;
&lt;P&gt;moshe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:FL (/ ss e1 e2 p1 p2 p3 p4 p_int p_1st p_2nd)
 (if (setq ss (ssget '((0 . "line")))) ; pick 2 lines
  (progn
   (setq e1 (entget (ssname ss 0)) e2 (entget (ssname ss 1)))
   (setq p1 (cdr (assoc '10 e1)) p2 (cdr (assoc '11 e1)))
   (setq p3 (cdr (assoc '10 e2)) p4 (cdr (assoc '11 e2)))

   (if (setq p_int (inters p1 p2 p3 p4 nil)); if lines intersect?
    (progn&lt;BR /&gt;     ; find the point close to intersect point for first line&lt;BR /&gt;     ; and pick the point to be select
     (if (&amp;lt; (distance p1 p_int) (distance p2 p_int))
      (setq p_1st (polar p1 (angle p1 p2) (/ (distance p1 p2) 3)))
      (setq p_1st (polar p2 (angle p2 p1) (/ (distance p2 p1) 3)))
     )

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ; find the point close to intersect point for second line&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ; and pick the point to be select&lt;BR /&gt;     (if (&amp;lt; (distance p3 p_int) (distance p4 p_int))
      (setq p_2nd (polar p3 (angle p3 p4) (/ (distance p3 p4) 3)))
      (setq p_2nd (polar p4 (angle p4 p3) (/ (distance p4 p3) 3)))
     )

     (command "._fillet" "_radius" 0 "._fillet" "_none" (osnap p_1st "_nea") "_none" (osnap p_2nd "_nea"))
    ); progn
   ); if

  ); progn
 ); if

 (princ)
)
&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Jan 2019 21:06:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541590#M93722</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-01-22T21:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541645#M93723</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4612322"&gt;@craig-s-sunderland&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Good evening&lt;/P&gt;
&lt;P&gt;I have two lines being drawn via lisp and the calculated coordinates that one end of each of the lines meet needs to be filleted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;... when specifying the same coordinates twice in the command (first and second selection) results in an error ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you know the point at which they meet [I assume you do, if you're picking there twice to Fillet them], can you just &lt;EM&gt;draw them to there in the first place&lt;/EM&gt;, and&amp;nbsp;eliminate the need to&amp;nbsp;Fillet?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, and if&amp;nbsp;the ends closer to the meeting point are always the ones that need to change,&amp;nbsp;another approach would be to use not Fillet but the &lt;STRONG&gt;&lt;FONT color="#000000"&gt;CHANGE&lt;/FONT&gt;&lt;/STRONG&gt; command, give it the two Lines, and give it the meeting point -- it will put the closer end of each at that point.&amp;nbsp; If the Lines may not always be orthogonal, make sure &lt;FONT color="#000000"&gt;ORTHO&lt;/FONT&gt; mode is &lt;EM&gt;off&lt;/EM&gt;&amp;nbsp; when you do it, because if that's on, they'll be forced to orthogonal orientation in the process [with the farther end staying in place].&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 21:27:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541645#M93723</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-01-22T21:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541704#M93724</link>
      <description>&lt;P&gt;Hi, thanks for responding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am wondering if there is a way to specify which object I want to pull the coordinates from i.e.&lt;/P&gt;
&lt;P&gt;"line one - 400,300" "line two - 400,300" in order to pass it along that way?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Two lines:&lt;/P&gt;
&lt;P&gt;1 (400,100) (400,300)&lt;/P&gt;
&lt;P&gt;2 (400,300) (560,300)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the command within the lisp routine is the following: (I've replaced the variables with the actual radius and coordinates).&lt;/P&gt;
&lt;PRE&gt;(command "_.fillet" "r" "10" "" "400,300" "" "400,300")&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Jan 2019 21:55:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541704#M93724</guid>
      <dc:creator>craig-s-sunderland</dc:creator>
      <dc:date>2019-01-22T21:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541730#M93725</link>
      <description>&lt;P&gt;My apologies, from the answers, it seems my explanation of what I am wanting isn't as clear as it could be.&lt;/P&gt;
&lt;P&gt;I am wanting to create a radius fillet on these corners regardless of the angle of intersection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have already created the lisp routine that lands the ends of the lines where I want the intersection&amp;nbsp;to&amp;nbsp;be from pre-defined variables. All I want to do is get that lovely rounded corner &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 22:08:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541730#M93725</guid>
      <dc:creator>craig-s-sunderland</dc:creator>
      <dc:date>2019-01-22T22:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541748#M93726</link>
      <description>&lt;P&gt;Hi Moshe, thank you for your offering here, I do however have absolutely no idea whatsoever what your code does...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I must admit I am still extremely new to this lisp stuff (less than 48 hours in...) so half of my battle is knowing what question to ask in order tonget the andwer I need &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 22:21:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8541748#M93726</guid>
      <dc:creator>craig-s-sunderland</dc:creator>
      <dc:date>2019-01-22T22:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542139#M93727</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4612322"&gt;@craig-s-sunderland&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;I am wanting to create a radius fillet on these corners regardless of the angle of intersection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have already created the lisp routine that lands the ends of the lines where I want the intersection&amp;nbsp;to&amp;nbsp;be from pre-defined variables. All I want to do is get that lovely rounded corner &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ah, a non-zero radius....&amp;nbsp; If you post the code that creates the Lines, someone can surely show you how to calculate points on them that are &lt;EM&gt;not&lt;/EM&gt;&amp;nbsp; at their common endpoint [for example, the midpoint of each], so that a Fillet command would work, provided you can be confident that there won't be something else there that the routine could "see" instead of the Line you want.&amp;nbsp; Or likewise if the Lines' entity names are stored in variables, without even seeing the code that draws them.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 03:19:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542139#M93727</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-01-23T03:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542175#M93728</link>
      <description>&lt;P&gt;&lt;SPAN&gt;please show your lisp, and sample dwg, with a before and after.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 04:12:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542175#M93728</guid>
      <dc:creator>devitg</dc:creator>
      <dc:date>2019-01-23T04:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542479#M93729</link>
      <description>&lt;P&gt;Try this.&lt;/P&gt;
&lt;P&gt;Example: (FilletLines '(200.0 150.0)&amp;nbsp; 25)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun FilletLines (FL_SelectPoint FL_Radius / FL_SelectPoint FL_Selection FL_OldVars FL_VarList)
   (if
      (and
         (numberp FL_Radius)
         (listp FL_SelectPoint)
         (not (vl-some 'not (mapcar 'numberp FL_SelectPoint)))
         (or
            (= (length FL_SelectPoint) 2)
            (= (length FL_SelectPoint) 3)
         )
         (setq FL_Selection (ssget "C" FL_SelectPoint FL_SelectPoint '((0 . "LINE"))))
         (= (sslength FL_Selection) 2)
      )
      (progn
         (vla-StartUndoMark (vla-get-ActiveDocument (vlax-get-acad-object)))
         (setq FL_OldVars (mapcar 'getvar (setq FL_VarList '("CMDECHO" "OSMODE" "FILLETRAD"))))
         (mapcar 'setvar FL_VarList (list 0 0 FL_Radius))
         (vl-cmdf "_.FILLET" (ssname FL_Selection 0) (ssname FL_Selection 1))
         (mapcar 'setvar FL_VarList FL_OldVars)
         (vla-EndUndoMark (vla-get-ActiveDocument (vlax-get-acad-object)))
      )
   )
   (princ)
)&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Jan 2019 08:37:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542479#M93729</guid>
      <dc:creator>DannyNL</dc:creator>
      <dc:date>2019-01-23T08:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542487#M93730</link>
      <description>&lt;P&gt;Here is the code as per request. I hope it makes sense...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun C:Rct1Slot( / hr hr1 vr vr1 TL BR slw slw1 slh TL TR BL BR A1 A2 B1 B2 R1)
  (setq
    hr (getdist "\nOutside Horizontal (mm): ")
    hr1 (/ hr 2)
    vr (getdist "\nOutside Vertical (mm): ")
    vr1 (/ vr 2)
    slw (getdist "\nSlot Width (mm): ")
    slw1 (/ slw 2)
    slh (getdist "\nSlot Height (mm): ")
    slp (getdist "\nSlot Center to Right Edge (mm): ")
    TL (list (- 0 hr1) vr1)
    TR (list hr1 vr1)
    BL (list (- 0 hr1) (- 0 vr1))
    BR (list hr1 (- 0 vr1))
    A1 (list (- hr1 (+ slp slw1)) (- 0 vr1))
    A2 (list (- hr1 (+ slp slw1)) (- 0 (- vr1 slh)))
    B1 (list (- hr1 (- slp slw1)) (- 0 vr1))
    B2 (list (- hr1 (- slp slw1)) (- 0 (- vr1 slh)))
    R1 (list (- hr1 slp) (+ (- 0 vr1) slh))
    osm (getvar 'osmode)
  )
  (setvar 'osmode 0)	
  (command "_.Line" "_non" TL TR "")
  (command "_.Line" "_non" TR BR "")
  (command "_.Line" "_non" BR B1 "")
  (command "_.Line" "_non" B1 B2 "")
  (command "_.Line" "_non" A2 A1 "")
  (command "_.Line" "_non" A1 BL "")
  (command "_.Line" "_non" BL TL "")
  (command "_.arc" B2 "_c" R1 A2)
  (setvar 'osmode osm)
  (princ)
)&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Jan 2019 08:39:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542487#M93730</guid>
      <dc:creator>craig-s-sunderland</dc:creator>
      <dc:date>2019-01-23T08:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542676#M93731</link>
      <description>&lt;P&gt;There is different way..... But you can try this like.....(I considered that you want to fillet all lines)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;..........................
  (setvar 'osmode 0)	
  (setq add (ssadd))
  (command "_.Line" "_non" TL TR "")
  (ssadd (entlast) add)
  (command "_.Line" "_non" TR BR "")
  (ssadd (entlast) add)
  (command "_.Line" "_non" BR B1 "")
  (ssadd (entlast) add)
  (command "_.Line" "_non" B1 B2 "")
  (ssadd (entlast) add)
  (command "_.Line" "_non" A2 A1 "")
  (ssadd (entlast) add)
  (command "_.Line" "_non" A1 BL "")
  (ssadd (entlast) add)
  (command "_.Line" "_non" BL TL "")
  (ssadd (entlast) add)
  (command "_.pedit" "_m" add "" "_y" "_j" 0.0 "")
  (command "fillet" "_P" "_R" 30 (entlast));;here 30 is taken as fillet radious take it as user input
  (command "explode" (entlast))&lt;BR /&gt;  (command "_.arc" B2 "_c" R1 A2)
  (setvar 'osmode osm)
.....................&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 10:18:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542676#M93731</guid>
      <dc:creator>dbhunia</dc:creator>
      <dc:date>2019-01-23T10:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542837#M93732</link>
      <description>&lt;P&gt;Hi, this works brilliantly on that one type of drawing using only a single radius, thank you for that!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sadly it all goes out of the window when I need to be able to specify 2 radius (internal and external) within the drawing.&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="ybar.jpg" style="width: 581px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/594168iF9668425F57E8A84/image-size/large?v=v2&amp;amp;px=999" role="button" title="ybar.jpg" alt="ybar.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;As you can see, the majority of the code works as expected and creates lines that intersect with each other as I want them.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;(However terminating the lines at the ID would be ideal!!)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;The two lines meeting at points A, D, B, E, F, G, H, I, J, L would be internal rad, and the two remaining points C and K would be external rads.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As always, pointers, hits, tips, always appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 11:44:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8542837#M93732</guid>
      <dc:creator>craig-s-sunderland</dc:creator>
      <dc:date>2019-01-23T11:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8543215#M93733</link>
      <description>&lt;P&gt;Thanks for posting your code. Without it, everyone is just reading into your question what they want and so the discussion can't focus on what you actually need.&amp;nbsp; I ran your code and it seems to work fine.&amp;nbsp; All the linework you have is horizontal and vertical so it's hard to understand your requested needs to fillet with lines that meet in any direction in the context of your code.&lt;/P&gt;
&lt;P&gt;Where would you integrate the fillet commands you need?&lt;/P&gt;
&lt;P&gt;Which corners do you need to fillet?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IMO, it's better to code what you need to create the tangent arcs rather than use the fillet command since there are so many dependencies in the fillet command (side you pick on, object snap interferences, other overlapping geometry, etc).&amp;nbsp; Start by sketching the bounding lines on paper and assess the geometry of the situation. Use trig to help you identify starting and ending points with respect to actual intersections.&amp;nbsp; Surveying texts are good sources for these kinds of things.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 13:56:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8543215#M93733</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2019-01-23T13:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8543541#M93734</link>
      <description>&lt;P&gt;Hi and thank you for your input, as you can see from my previous post, I have marked out which points I would like to see a fillet.&lt;/P&gt;
&lt;P&gt;I am interested in your tan arc idea, I am assuming from this that I would use similar calculations in order to produce a tan arc, but I cannot seem to find any reference to this.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 15:31:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8543541#M93734</guid>
      <dc:creator>craig-s-sunderland</dc:creator>
      <dc:date>2019-01-23T15:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8543713#M93735</link>
      <description>&lt;P&gt;&lt;SPAN&gt;please show your lisp, and sample dwg, with a before and after.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sad to say ACAD CAN NOT EDIT IMAGES&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 16:18:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8543713#M93735</guid>
      <dc:creator>devitg</dc:creator>
      <dc:date>2019-01-23T16:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8543723#M93736</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4612322"&gt;@craig-s-sunderland&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;I need to be able to specify 2 radius (internal and external) within the drawing. ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can have the things drawn as a Polyline, instead of Lines [or join them into Polylines as in an earlier suggestion], maybe you can steal some stuff from &lt;FONT color="#000000"&gt;&lt;STRONG&gt;FilletPlineVert.lsp&lt;/STRONG&gt;&lt;/FONT&gt;, &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-certain-vertices-of-a-polyline/m-p/6866813#M349629" target="_blank" rel="noopener"&gt;&amp;gt;here&amp;lt;&lt;/A&gt;.&amp;nbsp; It Fillets a Polyline corner by &lt;EM&gt;single selection at the corner&lt;/EM&gt;.&amp;nbsp; You could eliminate a lot of it [the User selection, the option to pick away from a corner and have it Fillet the adjacent segments on either side, etc.] if you can build in the locations.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 16:21:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8543723#M93736</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-01-23T16:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8544972#M93737</link>
      <description>&lt;P&gt;Thank you again for your input, could you please tell me what the difference is between lines and polylines?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 23:31:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8544972#M93737</guid>
      <dc:creator>craig-s-sunderland</dc:creator>
      <dc:date>2019-01-23T23:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8544996#M93738</link>
      <description>&lt;P&gt;Lines have only 2 points , star-end , Polylines have a lot of point , and arcs. Also It can be a polyline with 2 points.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 23:48:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8544996#M93738</guid>
      <dc:creator>devitg</dc:creator>
      <dc:date>2019-01-23T23:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Fillet command where two lines meet at the same coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8546840#M93739</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4612322"&gt;@craig-s-sunderland&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you again for your input, could you please tell me what the difference is between lines and polylines?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Help is your friend.&amp;nbsp; Read about the LINE and PLINE commands there.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 16:36:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/fillet-command-where-two-lines-meet-at-the-same-coordinates/m-p/8546840#M93739</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-01-24T16:36:55Z</dc:date>
    </item>
  </channel>
</rss>

