<?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 for automatically mark a triangle for distance between IP points of polyline curves in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10862043#M50914</link>
    <description>&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/524107"&gt;@CADaSchtroumpf&lt;/a&gt;&lt;BR /&gt;I did a little GIS stuff myself years ago, but if I ever get back into it&lt;BR /&gt;and need some help, I will come to you.</description>
    <pubDate>Thu, 06 Jan 2022 14:20:44 GMT</pubDate>
    <dc:creator>john.uhden</dc:creator>
    <dc:date>2022-01-06T14:20:44Z</dc:date>
    <item>
      <title>Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10839716#M50893</link>
      <description>&lt;P&gt;I have this lisp i want modify it for marking triangle with dimensions refer attached autocad file ......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun c:IPMark (/ bulge ptcp pct delta/2 ang chord radius tangent enpi pilst)&lt;BR /&gt;&lt;BR /&gt;(setq en (car (entsel "Select Alignment: "))&lt;BR /&gt;lst (listpolb en)&lt;BR /&gt;pilst nil&lt;BR /&gt;)&lt;BR /&gt;(while (&amp;gt; (length lst) 1)&lt;BR /&gt;(if (not (zerop (setq bulge (cadar lst))))&lt;BR /&gt;(setq ptc (caar lst)&lt;BR /&gt;pct (caadr lst)&lt;BR /&gt;delta/2 (* (atan bulge) 2.0)&lt;BR /&gt;ang (- (angle ptc pct) delta/2)&lt;BR /&gt;chord (distance ptc pct)&lt;BR /&gt;radius (/ chord (* 2 (sin delta/2)))&lt;BR /&gt;tangent (* radius (tan delta/2))&lt;BR /&gt;pilst (cons (polar ptc ang tangent) pilst)&lt;BR /&gt;enpi (entmakex (list (cons 0 "POINT") (cons 10 (car pilst))))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(setq lst (cdr lst))&lt;BR /&gt;)&lt;BR /&gt;(print pilst)&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;;; tan From std-lib ;&lt;BR /&gt;(defun tan (z / cosz)&lt;BR /&gt;(cond ((zerop (rem z pi)) 0.0)&lt;BR /&gt;((zerop (rem z (/ pi 2))) 1.7e308)&lt;BR /&gt;((zerop (setq cosz (cos z))) 1.7e308)&lt;BR /&gt;(t (/ (sin z) cosz))))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;;; ;&lt;BR /&gt;;; listpolb by ymg ;&lt;BR /&gt;;; ;&lt;BR /&gt;;; Parameter: en, Entity Name or Object Name ;&lt;BR /&gt;;; ;&lt;BR /&gt;;; Returns: List of Points and Bulge in WCS ;&lt;BR /&gt;;; ;&lt;BR /&gt;;; Notes: On Closed Polyline the Last Vertex is Same as First) ;&lt;BR /&gt;;; ;&lt;BR /&gt;&lt;BR /&gt;(defun listpolb (en / obj i p l)&lt;BR /&gt;(if (= (type en) 'ENAME)&lt;BR /&gt;(setq obj (vlax-ename-&amp;gt;vla-object en))&lt;BR /&gt;(setq obj en en (vlax-vla-object-&amp;gt;ename en))&lt;BR /&gt;)&lt;BR /&gt;(repeat (setq i (fix (vlax-curve-getEndParam en)))&lt;BR /&gt;(setq l (cons (list (vlax-curve-getPointAtParam en (setq i (1- i)))&lt;BR /&gt;(vla-getbulge obj i)&lt;BR /&gt;)&lt;BR /&gt;l&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(if (= (vla-get-closed obj) :vlax-true)&lt;BR /&gt;(append l (list (car l)))&lt;BR /&gt;l&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 12:26:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10839716#M50893</guid>
      <dc:creator>nilesh.bhosale</dc:creator>
      <dc:date>2021-12-23T12:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10839738#M50894</link>
      <description>&lt;P&gt;An interesting concept....&amp;nbsp; But there's something wrong at IP-8.&amp;nbsp; All the other IPs are APParent intersections between two line segments on either side of an arc segment [whose midpoint is near the IP].&amp;nbsp; But IP-8 is &lt;STRONG&gt;at&lt;/STRONG&gt; a vertex between &lt;EM&gt;line&lt;/EM&gt; segments, with no &lt;EM&gt;arc&lt;/EM&gt; segment in the neighborhood.&amp;nbsp; If both situations are possible, it's a hugely more complex problem than if every IP is like the others, &lt;EM&gt;off&lt;/EM&gt; the Polyline near the midpoint of an arc segment that is flanked by two line segments.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 12:42:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10839738#M50894</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-12-23T12:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10839790#M50895</link>
      <description>&lt;P&gt;The dimension of 1st IP &amp;amp; the Last IP point on polyline need to be taken from the start of the polyline and the end of the polyline respectively&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 13:26:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10839790#M50895</guid>
      <dc:creator>nilesh.bhosale</dc:creator>
      <dc:date>2021-12-23T13:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10840860#M50896</link>
      <description>&lt;P&gt;The drawing is updated, it was a mistake there will be always a curve on polyline&lt;/P&gt;</description>
      <pubDate>Fri, 24 Dec 2021 04:50:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10840860#M50896</guid>
      <dc:creator>nilesh.bhosale</dc:creator>
      <dc:date>2021-12-24T04:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10841841#M50897</link>
      <description>&lt;P&gt;Having done road design for to many years it is a common thing to not put a curve between changes of grade, where the change is less than a certain value, you would not do it on a freeway but a low speed road can push up to about 2% with no curve, so Kent your right would be a problem as no curve. Talking about curves in road design they are normally not curves but rather "Vertical Curve" which is a parabola. The road surface is normally a pline with short segments to reflect the parabola. So again finding the IP is a problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The poster refers to Vertical so its not a horizontal alignment.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Dec 2021 22:56:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10841841#M50897</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-12-24T22:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10842203#M50898</link>
      <description>&lt;P dir="ltr"&gt;This is not road layout this is for mining bulk materials handling technological layouts so it is a different concept I need to mark triangle of IP for curves marked on polyline as shown in attached drawing&lt;/P&gt;</description>
      <pubDate>Sat, 25 Dec 2021 08:57:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10842203#M50898</guid>
      <dc:creator>nilesh.bhosale</dc:creator>
      <dc:date>2021-12-25T08:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10843937#M50899</link>
      <description>&lt;P&gt;Ok&lt;/P&gt;</description>
      <pubDate>Mon, 27 Dec 2021 01:18:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10843937#M50899</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-12-27T01:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10844816#M50900</link>
      <description>&lt;P&gt;A try with this...&lt;/P&gt;&lt;P&gt;The list returned by code is inclined, horizontal ans vertical dimension.&lt;/P&gt;&lt;P&gt;For continued you can use a block with attributes filled in by the list of values&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(vl-load-com)
(defun c:IPMark ( / js AcDoc n ename obj pr dist_start dist_end pt_start pt_end seg_len seg_bulge rad alpha pt_vtx lst_pt)
  (princ "\nSelect Alignment: ")
  (while (null (setq js (ssget "_+.:E:S" '((0 . "LWPOLYLINE")))))
    (princ "\nIsn't a polyline!")
  )
  (setq AcDoc (vla-get-ActiveDocument (vlax-get-acad-object)))
  (vla-StartUndoMark AcDoc)
  (setq
    ename (ssname js 0)
    obj (vlax-ename-&amp;gt;vla-object ename)
    pr -1
  )
  (repeat (fix (vlax-curve-getEndParam obj))
    (setq
      dist_start (vlax-curve-GetDistAtParam obj (setq pr (1+ pr)))
      dist_end (vlax-curve-GetDistAtParam obj (1+ pr))
      pt_start (vlax-curve-GetPointAtParam obj pr)
      pt_end (vlax-curve-GetPointAtParam obj (1+ pr))
      seg_len (- dist_end dist_start)
      seg_bulge (vla-GetBulge obj pr)
    )
    (if (not (zerop seg_bulge))
      (setq
        rad (/ seg_len (* 4.0 (atan seg_bulge)))
        alpha (+ (angle pt_start pt_end) (- (* pi 0.5) (* 2.0 (atan seg_bulge))))
        pt_vtx (polar pt_start (- alpha (* pi 0.5)) (* rad (/ (sin (* 2.0 (atan seg_bulge))) (cos (* 2.0 (atan seg_bulge))))))
        lst_pt (cons pt_vtx lst_pt)
      )
    )
  )
  (cond
    (lst_pt
      (mapcar '(lambda (x) (entmakex (list (cons 0 "POINT") (cons 10 x)))) lst_pt)
      (print (mapcar '(lambda (x y) (list (distance x y) (- (car x) (car y)) (- (cadr y) (cadr x)))) lst_pt (cdr lst_pt)))
    )
  )
  (vla-EndUndoMark AcDoc)
  (prin1)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 27 Dec 2021 14:53:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10844816#M50900</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2021-12-27T14:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10846716#M50901</link>
      <description>&lt;P&gt;Finding the IP, or PI, or PVI is all the same to me.&lt;/P&gt;
&lt;P&gt;It's just the intersection of the straight tangents.&lt;/P&gt;
&lt;P&gt;It doesn't matter whether they are connected by a circular curve or a parabola.&lt;/P&gt;
&lt;P&gt;In fact, relying on the bulge value can be erroneous if the curve is not tangent.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Dec 2021 15:16:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10846716#M50901</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-12-28T15:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10856492#M50902</link>
      <description>&lt;P&gt;yes it is working and showing results in List (by pressing F2 command)&lt;/P&gt;&lt;P&gt;but i am unable to make attribute blocks with filled to put these values in triangle form in the drawing.&lt;/P&gt;&lt;P&gt;i have attached here the&amp;nbsp;drawing where i have tested this code&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 05:49:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10856492#M50902</guid>
      <dc:creator>nilesh.bhosale</dc:creator>
      <dc:date>2022-01-04T05:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10857838#M50903</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;If the block doesn't exist it's created&lt;/P&gt;&lt;P&gt;You can move the block if the insertion isn't not at good place (middle point bettwen of the IP by defaut)&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 17:37:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10857838#M50903</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2022-01-04T17:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10858566#M50904</link>
      <description>&lt;P&gt;Amazing...!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;Thank you very much this is fabulous working perfectly fine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks again&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 03:11:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10858566#M50904</guid>
      <dc:creator>nilesh.bhosale</dc:creator>
      <dc:date>2022-01-05T03:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10859247#M50905</link>
      <description>&lt;P&gt;i cant resist myself to ask further more...,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can i get the angle also, along with the this triangle?? (sin@) of right angle triangle formed from IP points?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample file attached&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 11:29:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10859247#M50905</guid>
      <dc:creator>nilesh.bhosale</dc:creator>
      <dc:date>2022-01-05T11:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10859737#M50906</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6363072"&gt;@nilesh.bhosale&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/524107"&gt;@CADaSchtroumpf&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure what was supposed to happen, but I must caution you again that the bulge does not necessarily tell you where the PI is, as the curve may not be tangent at both ends.&amp;nbsp; That's what we call a "broken back curve."&amp;nbsp; You should intersect the previous and subsequent straight tangents.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 15:16:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10859737#M50906</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2022-01-05T15:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860218#M50907</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You're right, but when we do road design (which seems to be the case), we avoid making non-tangent connections or you given it a good steering wheel !)&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":face_with_head_bandage:"&gt;🤕&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 18:24:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860218#M50907</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2022-01-05T18:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860422#M50908</link>
      <description>&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/524107"&gt;@CADaSchtroumpf&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;I am a civil as well, and would nver create a broken back curve, but ,hey,&lt;BR /&gt;you never know what someone else may have done before you got the drawing.&lt;BR /&gt;Like today I studied the site photos and found that the sanitary manhole is&lt;BR /&gt;actually a DOT manhole and that the nearby sanitary manhole was never&lt;BR /&gt;located.  Now the field crew has to go back out and locate it.  &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;</description>
      <pubDate>Wed, 05 Jan 2022 20:00:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860422#M50908</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2022-01-05T20:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860578#M50909</link>
      <description>&lt;P&gt;Before test in your drawing, you must erase all INSERT with name "BLK_MEASURE_CURVE"&lt;/P&gt;&lt;P&gt;Purge this block and after test the lisp.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 21:15:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860578#M50909</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2022-01-05T21:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860589#M50910</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You just have to have common sense! ...&lt;BR /&gt;Applying your method will complicate the code a lot and in the event of a counter curve without a straight element between, how do we do it (especially if they are broken)?&lt;BR /&gt;For me both methods have their flaws.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 21:27:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860589#M50910</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2022-01-05T21:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860639#M50911</link>
      <description>&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/524107"&gt;@CADaSchtroumpf&lt;/a&gt;&lt;BR /&gt;Complicated code is the name of my game.  I could show you some of my&lt;BR /&gt;larger works, but it would create nausea.  &lt;span class="lia-unicode-emoji" title=":face_screaming_in_fear:"&gt;😱&lt;/span&gt;&lt;BR /&gt;But you are correct... the user must eliminate the flaws before using code&lt;BR /&gt;that expects flawless conditions.</description>
      <pubDate>Wed, 05 Jan 2022 22:00:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860639#M50911</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2022-01-05T22:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for automatically mark a triangle for distance between IP points of polyline curves</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860718#M50912</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp; a écrit&amp;nbsp;:&lt;BR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/524107"&gt;@CADaSchtroumpf&lt;/a&gt;&lt;BR /&gt;Complicated code is the name of my game. I could show you some of my&lt;BR /&gt;larger works, but it would create nausea. &lt;span class="lia-unicode-emoji" title=":face_screaming_in_fear:"&gt;😱&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is also my case, I made routines for AutocadMap which automatically calculate and fill OjectData.&lt;/P&gt;&lt;P&gt;It took me a lot time to develop them, but they enabled me to establish a functional GIS (from A to Z) in record time.&lt;/P&gt;&lt;P&gt;They are so specific that I will certainly never publish them because to make them generic there would still be a lot of work.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 22:33:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-automatically-mark-a-triangle-for-distance-between-ip/m-p/10860718#M50912</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2022-01-05T22:33:04Z</dc:date>
    </item>
  </channel>
</rss>

