<?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: PLINE Segment Length Labels in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10526773#M62889</link>
    <description>&lt;P&gt;Could an error capturing feature where segments under, lets say a length of 8, are ignored from the labeling process?&lt;/P&gt;</description>
    <pubDate>Fri, 06 Aug 2021 22:56:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-08-06T22:56:31Z</dc:date>
    <item>
      <title>PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10155811#M62876</link>
      <description>&lt;P&gt;I'm looking for a simple LSP to label all segment lengths of a PLINE I select&amp;nbsp; similar to my screenshot below with labels in the middle of the PLINE segment and slightly above the line itself.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 14 Mar 2021 18:13:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10155811#M62876</guid>
      <dc:creator>cherrygate</dc:creator>
      <dc:date>2021-03-14T18:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10155880#M62877</link>
      <description>&lt;P&gt;My propostion&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(vl-load-com)
(defun c:label_dist-vertex_po ( / js htx AcDoc Space nw_style n obj ename pr dist_start dist_end pt_start pt_end seg_len alpha nw_obj)
  (princ "\nSelect polylines.")
  (while
    (null
      (setq js
        (ssget
          '(
            (0 . "*POLYLINE")
            (-4 . "&amp;lt;NOT")
              (-4 . "&amp;amp;") (70 . 112)
            (-4 . "NOT&amp;gt;")
          )
        )
      )
    )
    (princ "\nSelect is empty, or isn't POLYLINE!")
  )
  (initget 6)
  (setq htx (getdist (getvar "VIEWCTR") (strcat "\nSpecify height text &amp;lt;" (rtos (getvar "TEXTSIZE")) "&amp;gt;: ")))
  (if htx (setvar "TEXTSIZE" htx))
  (setq
    AcDoc (vla-get-ActiveDocument (vlax-get-acad-object))
    Space
    (if (= 1 (getvar "CVPORT"))
      (vla-get-PaperSpace AcDoc)
      (vla-get-ModelSpace AcDoc)
    )
  )
  (cond
    ((null (tblsearch "LAYER" "Label"))
      (vlax-put (vla-add (vla-get-layers AcDoc) "Label") 'color 96)
    )
  )
  (cond
    ((null (tblsearch "STYLE" "Romand-Label"))
      (setq nw_style (vla-add (vla-get-textstyles AcDoc) "Romand-Label"))
      (mapcar
        '(lambda (pr val)
          (vlax-put nw_style pr val)
        )
        (list 'FontFile 'Height 'ObliqueAngle 'Width 'TextGenerationFlag)
        (list "romand.shx" 0.0 (/ (* 15.0 pi) 180) 1.0 0.0)
      )
    )
  )
  (repeat (setq n (sslength js))
    (setq
      obj (ssname js (setq n (1- n)))
      ename (vlax-ename-&amp;gt;vla-object obj)
      pr -1
    )
    (repeat (fix (vlax-curve-getEndParam ename))
      (setq
        dist_start (vlax-curve-GetDistAtParam ename (setq pr (1+ pr)))
        dist_end (vlax-curve-GetDistAtParam ename (1+ pr))
        pt_start (vlax-curve-GetPointAtParam ename pr)
        pt_end (vlax-curve-GetPointAtParam ename (1+ pr))
        seg_len (- dist_end dist_start)
        alpha (angle (trans pt_start 0 1) (trans pt_end 0 1))
      )
      (setq nw_obj
        (vla-addMtext Space
          (vlax-3d-point (setq pt (polar (vlax-curve-GetPointAtParam ename (+ 0.5 pr)) (+ alpha (* pi 0.5)) (getvar "TEXTSIZE"))))
          0.0
          (rtos seg_len 2 2)
        )
      )
      (mapcar
        '(lambda (pr val)
          (vlax-put nw_obj pr val)
        )
        (list 'AttachmentPoint 'Height 'DrawingDirection 'InsertionPoint 'StyleName 'Layer 'Rotation)
        (list 8 (getvar "TEXTSIZE") 5 pt "Romand-Label" "Label" alpha)
      )
    )
  )
  (prin1)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 14 Mar 2021 19:06:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10155880#M62877</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2021-03-14T19:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10155923#M62878</link>
      <description>&lt;P&gt;Thank you so much for the fast response, this is almost perfect! Would you know a way to make it so the text is always rightside up? I tired it on this pline and some stuff was upside down&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, if it could round up to the next whole number that would be great.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 14 Mar 2021 19:35:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10155923#M62878</guid>
      <dc:creator>cherrygate</dc:creator>
      <dc:date>2021-03-14T19:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156216#M62880</link>
      <description>&lt;P&gt;With minor modifications&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(vl-load-com)
(defun c:label_dist-vertex_po ( / js htx AcDoc Space nw_style n obj ename pr dist_start dist_end pt_start pt_end seg_len alpha nw_obj)
  (princ "\nSelect polylines.")
  (while
    (null
      (setq js
        (ssget
          '(
            (0 . "*POLYLINE")
            (-4 . "&amp;lt;NOT")
              (-4 . "&amp;amp;") (70 . 112)
            (-4 . "NOT&amp;gt;")
          )
        )
      )
    )
    (princ "\nSelect is empty, or isn't POLYLINE!")
  )
  (initget 6)
  (setq htx (getdist (getvar "VIEWCTR") (strcat "\nSpecify height text &amp;lt;" (rtos (getvar "TEXTSIZE")) "&amp;gt;: ")))
  (if htx (setvar "TEXTSIZE" htx))
  (setq
    AcDoc (vla-get-ActiveDocument (vlax-get-acad-object))
    Space
    (if (= 1 (getvar "CVPORT"))
      (vla-get-PaperSpace AcDoc)
      (vla-get-ModelSpace AcDoc)
    )
  )
  (cond
    ((null (tblsearch "LAYER" "Label"))
      (vlax-put (vla-add (vla-get-layers AcDoc) "Label") 'color 96)
    )
  )
  (cond
    ((null (tblsearch "STYLE" "Romand-Label"))
      (setq nw_style (vla-add (vla-get-textstyles AcDoc) "Romand-Label"))
      (mapcar
        '(lambda (pr val)
          (vlax-put nw_style pr val)
        )
        (list 'FontFile 'Height 'ObliqueAngle 'Width 'TextGenerationFlag)
        (list "romand.shx" 0.0 (/ (* 15.0 pi) 180) 1.0 0.0)
      )
    )
  )
  (repeat (setq n (sslength js))
    (setq
      obj (ssname js (setq n (1- n)))
      ename (vlax-ename-&amp;gt;vla-object obj)
      pr -1
    )
    (repeat (fix (vlax-curve-getEndParam ename))
      (setq
        dist_start (vlax-curve-GetDistAtParam ename (setq pr (1+ pr)))
        dist_end (vlax-curve-GetDistAtParam ename (1+ pr))
        pt_start (vlax-curve-GetPointAtParam ename pr)
        pt_end (vlax-curve-GetPointAtParam ename (1+ pr))
        seg_len (- dist_end dist_start)
        alpha (angle (trans pt_start 0 1) (trans pt_end 0 1))
      )
      (if (and (&amp;gt; alpha (* pi 0.5)) (&amp;lt; alpha (* pi 1.5))) (setq alpha (+ alpha pi)))
      (setq nw_obj
        (vla-addMtext Space
          (vlax-3d-point (setq pt (polar (vlax-curve-GetPointAtParam ename (+ 0.5 pr)) (+ alpha (* pi 0.5)) (getvar "TEXTSIZE"))))
          0.0
          (rtos seg_len (getvar "LUNITS") 0)
        )
      )
      (mapcar
        '(lambda (pr val)
          (vlax-put nw_obj pr val)
        )
        (list 'AttachmentPoint 'Height 'DrawingDirection 'InsertionPoint 'StyleName 'Layer 'Rotation)
        (list 8 (getvar "TEXTSIZE") 5 pt "Romand-Label" "Label" alpha)
      )
    )
  )
  (prin1)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 14 Mar 2021 23:34:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156216#M62880</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2021-03-14T23:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156265#M62881</link>
      <description>&lt;P&gt;Legibility requires just a little extra code.&lt;/P&gt;
&lt;P&gt;Do you use Dview;Twist?&lt;/P&gt;
&lt;P&gt;Is any of your polyline segments bulged (arced)?&lt;/P&gt;
&lt;P&gt;Do you need to add not only distances, but also bearings and curve data?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 00:17:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156265#M62881</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-03-15T00:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156279#M62882</link>
      <description>&lt;P&gt;Like John if you want more properties look at Lee-mac.com polyinfo.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 00:29:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156279#M62882</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-03-15T00:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156286#M62883</link>
      <description>&lt;P&gt;That is perfect thank you so much for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One last thing, is there anyway to append a single apostrophe(') to the end of the length it outputs?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 00:32:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156286#M62883</guid>
      <dc:creator>cherrygate</dc:creator>
      <dc:date>2021-03-15T00:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156295#M62884</link>
      <description>Alan,&lt;BR /&gt;I was going to suggest my LABEL_IT program, but I really don't want to give&lt;BR /&gt;it away just yet, and we can't do any solicitation here.&lt;BR /&gt;I just can't stomach the limitations of using C3D labeling, so at work I&lt;BR /&gt;use my own.  The bosses don't care and don't want to know anything about&lt;BR /&gt;CAD, so I just get my work done.&lt;BR /&gt;The only improvement I have to make is creating real tables, not just an&lt;BR /&gt;anonymous block of lines and text. But thanks mainly to @Anonymous_ding I am&lt;BR /&gt;learning to master tables.</description>
      <pubDate>Mon, 15 Mar 2021 00:44:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156295#M62884</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-03-15T00:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156910#M62885</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9519953"&gt;@cherrygate&lt;/a&gt;&amp;nbsp; a écrit&amp;nbsp;:&lt;BR /&gt;&lt;P&gt;That is perfect thank you so much for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One last thing, is there anyway to append a single apostrophe(') to the end of the length it outputs?&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Simply change the line (towards the end of the code):&lt;/P&gt;&lt;P&gt;(rtos seg_len (getvar "LUNITS") 0) to (strcat (rtos seg_len (getvar "LUNITS") 0) "'")&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 09:22:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10156910#M62885</guid>
      <dc:creator>CADaSchtroumpf</dc:creator>
      <dc:date>2021-03-15T09:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10157117#M62886</link>
      <description>&lt;P&gt;I suggest &lt;FONT color="#000000"&gt;&lt;STRONG&gt;DimPoly.lsp&lt;/STRONG&gt;&lt;/FONT&gt; with its &lt;STRONG&gt;&lt;FONT color="#000000"&gt;DPI&lt;/FONT&gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&lt;FONT color="#000000"&gt;DPO&lt;/FONT&gt;&lt;/STRONG&gt;&amp;nbsp;[the one that will do it as in your image] commands, &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-dimensioning/m-p/6334977/highlight/true#M341427" target="_blank" rel="noopener"&gt;&amp;gt;&amp;gt;here&amp;lt;&amp;lt;&lt;/A&gt;.&amp;nbsp; See instructions on how to get the look you want, and some of its advantages, described&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-please/m-p/8282662/highlight/true#M374379" target="_blank" rel="noopener"&gt;&amp;gt;here&amp;lt;&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 10:47:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10157117#M62886</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-03-15T10:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10157199#M62887</link>
      <description>&lt;P&gt;That feature of changing the distance as the PLINE moves seems very nice however it also seems to do some odd things? It places a new PLINE along the middle of my current one? Is there anyway to stop this behavior while retaining the ability to move the PLINE and have the length update?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 11:28:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10157199#M62887</guid>
      <dc:creator>cherrygate</dc:creator>
      <dc:date>2021-03-15T11:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10157247#M62888</link>
      <description>&lt;P&gt;Is it really another Polyline?&amp;nbsp; Or is it a dimension line?&amp;nbsp; The comments at one of the links explain that for the look you're after, you need to make current a Dimension Style with &lt;EM&gt;both dimension lines and both extension lines suppressed&lt;/EM&gt;.&amp;nbsp; [It should also have the text vertically centered on, and its rotation aligned with, the suppressed dimension lines.]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it really &lt;EM&gt;is&lt;/EM&gt; another Polyline, the routine Offsets a temporary one to compare to, for deciding which is the inside and which the outside of the original.&amp;nbsp; It removes it, but if that isn't happening, could it be that you used it on a Polyline of a convoluted-enough shape that Offsetting has &lt;EM&gt;more than one&lt;/EM&gt; Polyline result?&amp;nbsp; [It removes only the (single) last object after it has made the comparison.]&amp;nbsp; It could also be thrown off if the dimension text height is large compared to the size of the Polyline, because the Offset that makes the temporary-comparison Polyline uses the text height for the Offset distance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, it's not clear to me what "along the middle of my current one" means.&amp;nbsp; Can you post a small sample drawing?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 12:02:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10157247#M62888</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-03-15T12:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10526773#M62889</link>
      <description>&lt;P&gt;Could an error capturing feature where segments under, lets say a length of 8, are ignored from the labeling process?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 22:56:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10526773#M62889</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-06T22:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10526783#M62890</link>
      <description>It would't be an error.&lt;BR /&gt;The programmer need only test if a segment were &amp;lt; 8 units and not label if&lt;BR /&gt;true.&lt;BR /&gt;In fact the programmer could ask for the minimum length to label.</description>
      <pubDate>Fri, 06 Aug 2021 23:08:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10526783#M62890</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-08-06T23:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10543095#M62891</link>
      <description>&lt;P&gt;This lisp routine inserts a zero at the start point of the polyline. Can you modify it so that it does not?. Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 12:21:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10543095#M62891</guid>
      <dc:creator>peter_pan_y_vino</dc:creator>
      <dc:date>2021-08-13T12:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10543354#M62892</link>
      <description>&lt;P&gt;I would bet that you have two vertices at the same place at that location ["coincident" vertices], for a zero-length segment.&amp;nbsp; You can tell by selecting the Polyline, and in Properties, picking in the "Current vertex" slot.&amp;nbsp; Pick on the little up arrow, and if the current vertex number increases to 2 but the X marker on the Polyline doesn't move, that's the cause.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To fix it, you can't just select the Polyline and use the Remove vertex option at the grip, because it won't offer that where there are coincident vertices.&amp;nbsp; Do this if that's at the &lt;EM&gt;starting&lt;/EM&gt; end of the Polyline:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Command: &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;PEDIT&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Select polyline or [Multiple]: &lt;EM&gt;&lt;FONT color="#00CCFF"&gt;{pick the Polyline}&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;Enter an option [Close/Join/Width/&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;E&lt;/FONT&gt;&lt;/STRONG&gt;dit vertex/Fit/Spline/Decurve/Ltype gen/Reverse/Undo]: &lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#0000FF"&gt;E&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Enter a vertex editing option&lt;BR /&gt;[Next/Previous/&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/FONT&gt;reak/Insert/Move/Regen/Straighten/Tangent/Width/eXit] &amp;lt;N&amp;gt;: &lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;B&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Enter an option [Next/Previous/Go/eXit] &amp;lt;&lt;FONT color="#0000FF"&gt;N&lt;/FONT&gt;&amp;gt;: &lt;EM&gt;&lt;FONT color="#00CCFF"&gt;{Enter to go to 2nd vertex at same location}&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Enter an option [Next/Previous/&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;G&lt;/FONT&gt;&lt;/STRONG&gt;o/eXit] &amp;lt;N&amp;gt;: &lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;G&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Enter a vertex editing option&lt;BR /&gt;[Next/Previous/Break/Insert/Move/Regen/Straighten/Tangent/Width/e&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;X&lt;/FONT&gt;&lt;/STRONG&gt;it] &amp;lt;N&amp;gt;: &lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#0000FF"&gt;X&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Enter an option [Close/Join/Width/Edit vertex/Fit/Spline/Decurve/Ltype gen/Reverse/Undo]: &lt;EM&gt;&lt;FONT color="#00CCFF"&gt;{Enter to complete PEDIT command}&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's at the &lt;EM&gt;downstream&lt;/EM&gt; end, the procedure is similar with a series of &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Next&lt;/FONT&gt; moves until you arrive at the end -- you'll figure it out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 14:14:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10543354#M62892</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-08-13T14:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10543985#M62893</link>
      <description>&lt;P&gt;(cond&lt;BR /&gt;((&amp;gt; htx (*8)) (setq htx (* 8)))&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 18:00:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/10543985#M62893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-13T18:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: PLINE Segment Length Labels</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/13338219#M62894</link>
      <description>&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this lisp is working fine but , I want to insert Angle&amp;nbsp;@ each vertex location, shown in Attached image in RED color. i want angle in DD.MM.SS format through polyline.&lt;/P&gt;&lt;P&gt;snap is attached.&lt;/P&gt;&lt;P&gt;Please help&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 10:49:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-segment-length-labels/m-p/13338219#M62894</guid>
      <dc:creator>hiraram_prajapati</dc:creator>
      <dc:date>2025-02-25T10:49:18Z</dc:date>
    </item>
  </channel>
</rss>

