<?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: Need a lisp for polyline to connect same text points in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354220#M59875</link>
    <description>&lt;P&gt;There may be a way as GE is left and right, get GE points, 3 values dist along C/L and offset hopefully + &amp;amp; - and insertion point so dbl sort offset then dist. Then just join pline points, as 1st go make 1 pline ignore join.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;; left or right by Lee-mac
(defun ISL-R ( / ent pnt cpt der )
(if (and (setq ent (car (entsel)))
             (setq pnt (getpoint "\nPoint: "))
        )
		(progn
		(setq pnt (trans pnt 1 0))
    (setq cpt (vlax-curve-getclosestpointto ent pnt)
          der (vlax-curve-getfirstderiv ent (vlax-curve-getparamatpoint ent cpt))
    )
    (if (minusp (sin (- (angle cpt pnt) (angle '(0.0 0.0) der))))
        (princ "\nPoint is on the right.")
        (princ "\nPoint is on the left.")
    )
    (princ)
)
)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Jun 2021 02:07:50 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2021-06-01T02:07:50Z</dc:date>
    <item>
      <title>Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10353520#M59872</link>
      <description>&lt;P&gt;Hi.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a road topography points.&lt;/P&gt;&lt;P&gt;I want a lisp program for draw polyline same name of text,&lt;/P&gt;&lt;P&gt;Polyline want to connect every "GE" Text base point. (GE means - Gravel Edge, Road Edge)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925115i43A677DE53F5DEFD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;if this is possible, provide me a lisp. I have more than hundred drawing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for bad English.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 16:29:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10353520#M59872</guid>
      <dc:creator>kajanthangavel</dc:creator>
      <dc:date>2021-05-31T16:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10353914#M59873</link>
      <description>&lt;P&gt;You can try following steps.&lt;/P&gt;
&lt;P&gt;Step 1, use QSELECT to select all text contain "GE".&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LINKPOINTS.PNG" style="width: 847px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925195i2C169A01530024E1/image-size/large?v=v2&amp;amp;px=999" role="button" title="LINKPOINTS.PNG" alt="LINKPOINTS.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Step 2, use &lt;A href="https://sites.google.com/site/cadkits/home/linkpoints" target="_self"&gt;LINKPOINTS&lt;/A&gt; to link these text with polyline(s).&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LINKPOINTS2.PNG" style="width: 509px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925199iB2E479E54BBEAF0C/image-size/large?v=v2&amp;amp;px=999" role="button" title="LINKPOINTS2.PNG" alt="LINKPOINTS2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 21:24:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10353914#M59873</guid>
      <dc:creator>3wood</dc:creator>
      <dc:date>2021-05-31T21:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354052#M59874</link>
      <description>&lt;P&gt;One vexing question is how to know in what order to connect them.&amp;nbsp; I'm afraid that connectivity is in the eye of the beholder.&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 23:45:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354052#M59874</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-05-31T23:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354220#M59875</link>
      <description>&lt;P&gt;There may be a way as GE is left and right, get GE points, 3 values dist along C/L and offset hopefully + &amp;amp; - and insertion point so dbl sort offset then dist. Then just join pline points, as 1st go make 1 pline ignore join.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;; left or right by Lee-mac
(defun ISL-R ( / ent pnt cpt der )
(if (and (setq ent (car (entsel)))
             (setq pnt (getpoint "\nPoint: "))
        )
		(progn
		(setq pnt (trans pnt 1 0))
    (setq cpt (vlax-curve-getclosestpointto ent pnt)
          der (vlax-curve-getfirstderiv ent (vlax-curve-getparamatpoint ent cpt))
    )
    (if (minusp (sin (- (angle cpt pnt) (angle '(0.0 0.0) der))))
        (princ "\nPoint is on the right.")
        (princ "\nPoint is on the left.")
    )
    (princ)
)
)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 02:07:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354220#M59875</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-06-01T02:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354409#M59876</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;, I changed your lisp.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know, how to sort this polyline direction. If you can, give me a idea.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;&lt;EM&gt;(&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;setq&lt;/STRONG&gt; &lt;/FONT&gt;&lt;FONT color="#000000"&gt;plst&lt;/FONT&gt; (&lt;FONT color="#000000"&gt;vl-sort ptLst&lt;/FONT&gt; '(&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;lambda&lt;/STRONG&gt;&lt;/FONT&gt;(&lt;FONT color="#000000"&gt;a b&lt;/FONT&gt;)(&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;&amp;lt;&lt;/FONT&gt;&lt;/STRONG&gt;(&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;car&lt;/FONT&gt; &lt;/STRONG&gt;&lt;FONT color="#000000"&gt;a&lt;/FONT&gt;)(&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;car&lt;/FONT&gt; &lt;/STRONG&gt;&lt;FONT color="#000000"&gt;b&lt;/FONT&gt;)))))&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;; left or right by Lee-mac
(defun c:ISL-R ( / ent pnt cpt der ss hnd rhs lhs i)
(setq ent (car (entsel "\nSelect Center line : ")))
(prompt "\nSelect Text : ")
(if (setq ss (ssget '((0 . "*TEXT") (1 . "GE"))))
	(repeat (setq i (sslength ss))
		(setq hnd (ssname ss (setq i (1- i))))
		(setq pnt (cdr (assoc 10 (entget hnd))))
		(setq pnt (trans pnt 1 0))
		(setq cpt (vlax-curve-getclosestpointto ent pnt)
			  der (vlax-curve-getfirstderiv ent (vlax-curve-getparamatpoint ent cpt))
		)
		(if (minusp (sin (- (angle cpt pnt) (angle '(0.0 0.0) der))))
			(setq rhs (cons pnt rhs)); Right Side
			(setq lhs (cons pnt lhs)); Left Side
		)
		(princ)
	)
)
(makepoly rhs)
(makepoly lhs)
)

(defun makepoly (allpoint / plst ptLst)
(setq ptLst (reverse allpoint))
(setq plst (vl-sort ptLst '(lambda(a b)(&amp;lt;(car a)(car b)))))
	(entmakex
		(apply 'append
			(list
				(list
				'(0 . "LWPOLYLINE")
				'(100 . "AcDbEntity")
				'(8 . "GE")
				'(100 . "AcDbPolyline")
				(cons 90 (length ptLst))
				(cons 38 (caddr (trans '(0 0 0) 1 (trans '(0. 0. 1.) 1 0))))
				'(70 . 0)
				)
			(mapcar '(lambda (x) (list 10 (car x) (cadr x)))
			(mapcar '(lambda (x) (trans x 1 (trans '(0. 0. 1.) 1 0))) plst)
			)
			(list (cons 210 (trans '(0. 0. 1.) 1 0)))
			)
		)
	)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My result&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture3.PNG" style="width: 261px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925268iB519A6A540134CD5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture3.PNG" alt="Capture3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thank You&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 04:57:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354409#M59876</guid>
      <dc:creator>kajanthangavel</dc:creator>
      <dc:date>2021-06-01T04:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354437#M59877</link>
      <description>&lt;P&gt;I need side by side.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925266i16C1E55A678152A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 04:50:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354437#M59877</guid>
      <dc:creator>kajanthangavel</dc:creator>
      <dc:date>2021-06-01T04:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354441#M59878</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":grinning_squinting_face:"&gt;😆&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":grinning_squinting_face:"&gt;😆&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":grinning_squinting_face:"&gt;😆&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 04:59:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354441#M59878</guid>
      <dc:creator>kajanthangavel</dc:creator>
      <dc:date>2021-06-01T04:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354554#M59879</link>
      <description>&lt;P&gt;Try this it sorts etc,&lt;/P&gt;&lt;P&gt;Pick pline&lt;/P&gt;&lt;P&gt;Pick a text this is for layer and text string.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please note there is 1 point that is "spaceGE" so does not get picked up but could add *GE to ssget.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There will always be some mistakes as some EG are side shots rather than just on edge.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;; Joinpts based on tex string and layer
; By Alanh June 2021

(defun c:joinpts ( / isl-r ahpllst obj ss ent ins cpt dist pts)

; left or right by lee-mac
(defun ISL-R ( ent pnt cpt / der )
	(setq pnt (trans pnt 1 0)
          der (vlax-curve-getfirstderiv ent (vlax-curve-getparamatpoint ent cpt))
    )
    (if (minusp (sin (- (angle cpt pnt) (angle '(0.0 0.0) der))))
        (setq offs (distance cpt ins))
        (setq offs (- (distance cpt ins)))
    )
    (princ)
)

(defun LWPoly (lst cls)
 (entmakex (append (list (cons 0 "LWPOLYLINE")
                         (cons 100 "AcDbEntity")
                         (cons 100 "AcDbPolyline")
                         (cons 90 (length lst))
                         (cons 70 cls))
                   (mapcar (function (lambda (p) (cons 10 p))) lst))))

(setq obj (vlax-ename-&amp;gt;vla-object (car  (entsel "\nPick pline obj"))))
(setq ent (entget (car (entsel "\nPick a text"))))

(setq lay (cdr (assoc 8 ent)))
(setq txt (cdr (assoc 1 ent)))
(setq ss (ssget (list (cons 0 "TEXT")(cons 8 lay)(cons 1 txt))))

(setq lst '())

(repeat (setq x (sslength ss))
  (setq ent (ssname ss (setq x (- x 1))))
  (setq ins (cdr (assoc 10 (entget ent))))
  (setq cpt (vlax-curve-getclosestpointto obj ins))
  (ISL-R  obj ins  cpt)
  (setq dist (vlax-curve-getdistatpoint obj cpt))
  (setq lst (cons (list dist offs (list (car ins)(cadr ins))) lst))
)

(setq lst (vl-sort lst '(lambda (x y) (&amp;lt; (car x)(car y)))))

(setq lst1 '() lst2 '())
(foreach pts lst
  (if (&amp;lt; (nth 1 pts) 0.0)
    (setq lst1 (cons (nth 2 pts) lst1))
    (setq lst2 (cons (nth 2 pts) lst2))
  )
)

(Lwpoly lst1 0)
(Lwpoly lst2 0)

(princ)
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screenshot395.png" style="width: 497px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925277iAB16024660CC5E3B/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot395.png" alt="screenshot395.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 06:09:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354554#M59879</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-06-01T06:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354607#M59880</link>
      <description>&lt;P&gt;From the example file we can see the 'GE' actually is on both sides of the road.&lt;/P&gt;
&lt;P&gt;Fortunately the road has a center polyline. If there is no road center line, please refer to my previous post and link all 'CL' into a road center line.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LK0.PNG" style="width: 795px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925280i204D8BF0D87058B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="LK0.PNG" alt="LK0.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;We can use this line to separate the GEs into 2 groups, one group for each side of the road.&lt;/P&gt;
&lt;P&gt;For each group, use steps below to link GEs:&lt;/P&gt;
&lt;P&gt;Step 1, Close the road center polyline and add a few more nodes to create a closed polyline enclosing all GEs on one side of the road.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LK2.PNG" style="width: 883px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925289iEC5BBB07FE150E5F/image-size/large?v=v2&amp;amp;px=999" role="button" title="LK2.PNG" alt="LK2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Step 2, use &lt;A href="https://sites.google.com/site/cadkits/home/smartsel" target="_blank" rel="noopener"&gt;SMARTSEL&lt;/A&gt; to select objects within the polyline.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LK3.PNG" style="width: 592px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925286i3D113C8F6B4E6482/image-size/large?v=v2&amp;amp;px=999" role="button" title="LK3.PNG" alt="LK3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Step 3, use QSELECT to exclude texts which content are not 'GE' from the selection.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LK1.PNG" style="width: 337px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925287i22B0C3DA8FE73AAD/image-size/large?v=v2&amp;amp;px=999" role="button" title="LK1.PNG" alt="LK1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Now all GEs on one side of the road are selected.&lt;/P&gt;
&lt;P&gt;Step 4, use LINKPOINTS to link above GEs.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LK4.PNG" style="width: 907px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925294i7057DA4A0FAC7AAC/image-size/large?v=v2&amp;amp;px=999" role="button" title="LK4.PNG" alt="LK4.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Step 5, repeat Step 2 to 4 to link GEs on the other side of the road. Result:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LK5.PNG" style="width: 882px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925295i2E87584DA17B6C01/image-size/large?v=v2&amp;amp;px=999" role="button" title="LK5.PNG" alt="LK5.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 06:30:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354607#M59880</guid>
      <dc:creator>3wood</dc:creator>
      <dc:date>2021-06-01T06:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354613#M59881</link>
      <description>&lt;P&gt;Wow.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_blowing_a_kiss:"&gt;😘&lt;/span&gt;, Excellent work&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;, You solved my problem, what I need.&lt;/P&gt;&lt;P&gt;Thank You so much. It is save lots of time&lt;span class="lia-unicode-emoji" title=":timer_clock:"&gt;⏲&lt;/span&gt;.&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 06:34:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10354613#M59881</guid>
      <dc:creator>kajanthangavel</dc:creator>
      <dc:date>2021-06-01T06:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10357047#M59882</link>
      <description>&lt;P&gt;Having todo a lot of work around I have worked with field surveys for like 40 years the dwg provided is not a good survey, it needs string code or at least a, GEL GER or GE01 GE02 and so on. Our guys pick up like 10,000 points and would never do a multi gravel edges as GE.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Newer survey instruments have a cross section feature so will auto GE1 CL1 GE2 as 3 consecutive points.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been looking at doing a string points in this case would have ended up with a zig zag pline joining GE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 02:40:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10357047#M59882</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-06-02T02:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10361511#M59883</link>
      <description>&lt;P&gt;amazing&lt;/P&gt;&lt;P&gt;It also served me well.&lt;/P&gt;&lt;P&gt;It is possible to use a similar code but for the lines to join blocks with the same name?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 15:40:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10361511#M59883</guid>
      <dc:creator>Dan-Rod</dc:creator>
      <dc:date>2021-06-03T15:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10362451#M59884</link>
      <description>&lt;PRE&gt;Sorry, it would actually be the same case but to link blocks that have exactly the same attribute, not the name of the block, since I have a file with many blocks with the same name but with different attributes and what I would like is for them to be linked with a polyline the blocks with the same attribute.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 22:22:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10362451#M59884</guid>
      <dc:creator>Dan-Rod</dc:creator>
      <dc:date>2021-06-03T22:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10362673#M59885</link>
      <description>&lt;P&gt;Post a dwg much easier to work with have blocknames and tag names.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 01:08:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10362673#M59885</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-06-04T01:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need a lisp for polyline to connect same text points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10363973#M59886</link>
      <description>&lt;P&gt;I attach an example.&lt;/P&gt;&lt;P&gt;in it there are 6 blocks, they all have the same name, each one has 2 attributes, I would like them to be linked by the value of the attribute that is the same regardless of whether the name of the block is the same, I hope I can support myself.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 13:33:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/need-a-lisp-for-polyline-to-connect-same-text-points/m-p/10363973#M59886</guid>
      <dc:creator>Dan-Rod</dc:creator>
      <dc:date>2021-06-04T13:33:27Z</dc:date>
    </item>
  </channel>
</rss>

