<?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: Add a breakline to an existing surface using LISP in Civil 3D Customization Forum</title>
    <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12211737#M4814</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9398168"&gt;@artirtas9100&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you attached example drawing for testing&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Sep 2023 11:11:02 GMT</pubDate>
    <dc:creator>hosneyalaa</dc:creator>
    <dc:date>2023-09-01T11:11:02Z</dc:date>
    <item>
      <title>Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11488026#M4804</link>
      <description>&lt;P&gt;How would I add a standard breakline (3D polyline) to an existing surface using visual LISP? I would like to use LISP in this case and not .NET.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2022 14:45:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11488026#M4804</guid>
      <dc:creator>blair.nixon</dc:creator>
      <dc:date>2022-10-17T14:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11488905#M4805</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;May this help you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://docs.autodesk.com/CIV3D/2012/ENU/API_Reference_Guide/com/AeccXLandLib__IAeccSurfaceBreaklines.htm" target="_blank"&gt;http://docs.autodesk.com/CIV3D/2012/ENU/API_Reference_Guide/com/AeccXLandLib__IAeccSurfaceBreaklines.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_٢٠٢٢١٠١٨_٠٠٠٦٥١.jpg" style="width: 720px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1128490iC0AB0ADD76855EA5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot_٢٠٢٢١٠١٨_٠٠٠٦٥١.jpg" alt="Screenshot_٢٠٢٢١٠١٨_٠٠٠٦٥١.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2022 21:09:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11488905#M4805</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2022-10-17T21:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11488926#M4806</link>
      <description>I've seen that doc already but am looking for an example, if available?&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Oct 2022 21:17:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11488926#M4806</guid>
      <dc:creator>blair.nixon</dc:creator>
      <dc:date>2022-10-17T21:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11489075#M4807</link>
      <description>&lt;P&gt;Here is an example to add a Wall breakline, refer to the help for other types.&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:test_AddWallBreakline  ( / *ACAD* ALGN BLKSOBJ C3D C3DDOC DOC ENT E_TYP OBENT PNTS SPC SRF XSTTY)  
  (vl-load-com)
  (defun makevariant (vtype listvalue / )
    (setq array (vlax-make-variant listvalue))    
    (setq sa (vlax-make-safearray  (vlax-variant-type array) (cons 0 0)))
    (vlax-safearray-fill sa (list array))
    sa
    )
  
  (IF     (OR
	    (setq algn (vlax-ename-&amp;gt;vla-object (setq lw(car (entsel "\nSelect Polyline: ")))))
	    (while (not (= (vlax-get-property algn 'ObjectName) "AcDbPolyline"))
	      (setq algn (vlax-ename-&amp;gt;vla-object (car (entsel "\nSelect Polyline: "))))
	      )
	    )
    (PROGN
      (setq srf (vlax-ename-&amp;gt;vla-object (setq ent (car (entsel "\nSelect Surface: ")))))
      (while (not (= (vlax-get-property srf 'ObjectName) "AeccDbSurfaceTin"))
	(setq srf (vlax-ename-&amp;gt;vla-object (car (entsel "\nEntity must be C3D Surface. Try again: "))))
	)
      (setq breaks (vlax-get srf 'Breaklines))
      ;;http://docs.autodesk.com/CIV3D/2012/ENU/API_Reference_Guide/com/AeccXLandLib__IAeccSurfaceBreaklines__AddWallBreakline@[in]_VARIANT@[in]_BSTR@[in]_double@[in]_VARIANT@[in]_VARIANT@[out,_retval]_IAeccSurfaceBreakline___.htm
      (vlax-invoke-method
	breaks
	'AddWallBreakline
	(makevariant nil algn)
	(vlax-get-property algn 'HANDLE)
	0.1
	(makevariant vlax-vbdouble  1.0) ;;LEVEL
	(makevariant vlax-vbboolean 1) ;;LEVEL
	)
      )
    )
  (princ)
  )
&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 17 Oct 2022 22:42:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11489075#M4807</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2022-10-17T22:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11489213#M4808</link>
      <description>&lt;P&gt;That was exactly what I needed!&lt;/P&gt;&lt;P&gt;I was missing/not understanding how to select a polyline and turn it into a variant.&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 00:35:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11489213#M4808</guid>
      <dc:creator>blair.nixon</dc:creator>
      <dc:date>2022-10-18T00:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11489550#M4809</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/32637"&gt;@Jeff_M&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;THANT YOU FOR&amp;nbsp; an example to add a Wall breakline&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But&lt;BR /&gt;When I tried it it didn't work An error appeared with me&lt;/P&gt;&lt;P&gt;can you take a look&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Command: TEST_ADDWALLBREAKLINE
Select Polyline:
Select Surface: ; error: Automation Error. Description was not provided.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Q.gif" style="width: 813px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1128575iA9D2F1C10BD1AFF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Q.gif" alt="Q.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 05:30:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11489550#M4809</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2022-10-18T05:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11491210#M4810</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6591997"&gt;@hosneyalaa&lt;/a&gt;&amp;nbsp;yes, I am seeing the same thing. This is something I wrote years ago and I did not test it prior to posting yesterday. It's been long enough ago that I don't recall if it ever worked. I've just tried a number of things to get it working, none have been successful. When I get some more time I will try again.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 16:34:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11491210#M4810</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2022-10-18T16:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11491270#M4811</link>
      <description>&lt;P&gt;I was looking for a standard breakline and not a wall breakline so I revised the code Jeff posted (if this helps at all).&lt;BR /&gt;(defun c:AddSurface (/ surfname brkline C3D verstring prodstring datastr surfs tincreationdata srf breaks)&lt;BR /&gt;(setq surfname (getstring 1 "\nEnter surface name = "))&lt;BR /&gt;(setq brkline (vlax-ename-&amp;gt;vla-object (setq lw(car (entsel "\nSelect Polyline: ")))))&lt;BR /&gt;(setq C3D (strcat "HKEY_LOCAL_MACHINE\\" (if vlax-user-product-key (vlax-user-product-key) (vlax-product-key)))&lt;BR /&gt;C3D (vl-registry-read C3D "Release")&lt;BR /&gt;verstring (substr C3D 1 (vl-string-search "." C3D (+ (vl-string-search "." C3D) 1)))&lt;BR /&gt;prodstring (strcat "AeccXUiLand.AeccApplication." verstring)&lt;BR /&gt;)&lt;BR /&gt;(setq datastr (strcat "AeccXLand.AeccTinCreationData." verstring))&lt;BR /&gt;(if (and (setq *acad* (vlax-get-acad-object))&lt;BR /&gt;(setq C3D (vla-getinterfaceobject *acad* prodstring))&lt;BR /&gt;(setq C3Ddoc (vla-get-activedocument C3D))&lt;BR /&gt;(setq surfs (vlax-get C3Ddoc 'surfaces))&lt;BR /&gt;(setq tincreationdata (vla-getinterfaceobject *acad* datastr))&lt;BR /&gt;)&lt;BR /&gt;(progn&lt;BR /&gt;(vlax-put tincreationdata 'baselayer "0")&lt;BR /&gt;(vlax-put tincreationdata 'layer "0")&lt;BR /&gt;(vlax-put tincreationdata 'description "Surface Created by LISP")&lt;BR /&gt;(vlax-put tincreationdata 'name surfname)&lt;BR /&gt;(if (wcmatch (strcase surfname) "*BASE*")&lt;BR /&gt;(vlax-put tincreationdata 'style "_No Display")&lt;BR /&gt;(vlax-put tincreationdata 'style "Contours and Triangles")&lt;BR /&gt;)&lt;BR /&gt;(setq srf (vlax-invoke-method surfs 'addtinsurface tincreationdata))&lt;BR /&gt;(setq breaks (vlax-get srf 'Breaklines))&lt;BR /&gt;(vlax-invoke-method&lt;BR /&gt;breaks&lt;BR /&gt;'AddStandardBreakline&lt;BR /&gt;(makevariant nil brkline)&lt;BR /&gt;(vlax-get-property brkline 'HANDLE)&lt;BR /&gt;0.1&lt;BR /&gt;)&lt;BR /&gt;;add boundary&lt;BR /&gt;(vlax-invoke (vlax-get srf 'boundaries) 'add brkline "Created by LISP" 4 :vlax-TRUE 0.05)&lt;BR /&gt;;rebuild surface&lt;BR /&gt;(vlax-invoke-method srf 'rebuild)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 17:02:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11491270#M4811</guid>
      <dc:creator>blair.nixon</dc:creator>
      <dc:date>2022-10-18T17:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11519152#M4812</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/32637"&gt;@Jeff_M&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unlike you, who has advanced to higher lever programming languages, I am forever stuck in AutoLisp, mostly resulting from my days of customizing Land Desktop.&lt;/P&gt;
&lt;P&gt;But I am proud that I finally included filtering for raw descriptions in the 6th version of my breakline.lsp program for Civil 3D.&amp;nbsp; You select one or more 2D or LW polylines (which you have already drawn), provide a layer filter and/or description filter and it creates 3D polylines with vertices added between points on curves.&amp;nbsp; It makes my life so much easier to create separate breaklines for TC vs. G (or as they use here, BC) when they are right next to one another.&amp;nbsp; I should probably shrink it by removing all the LDT specific code, but I think maybe if it works, don't fix it.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 00:44:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/11519152#M4812</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2022-10-31T00:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12211710#M4813</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I would like to add&amp;nbsp;a selection set of polylines (i've hundreds of them...) per layer as one breakline entry in the Surface Definition/Breaklines.&lt;BR /&gt;How do i do that?&lt;/P&gt;&lt;P&gt;I have this so far (changed from the code by blair.nixon):&lt;/P&gt;&lt;P&gt;(setq algnset (ssget "_X" '((0 . "POLYLINE") (8 . "Layername-10") ))) ;; select alle poly-objects on a layer&lt;/P&gt;&lt;P&gt;(setq newset (LM:ss-&amp;gt;vla algnset)) ;; convert to VLA objects, thank you Lee Mac&lt;/P&gt;&lt;P&gt;(setq breaks (vlax-get srf 'Breaklines))&lt;BR /&gt;(vlax-invoke-method&lt;BR /&gt;breaks&lt;BR /&gt;'AddStandardBreakline&lt;BR /&gt;(makevariant nil newset) ;; to be replaced with a variant of the selection list... but how to do it?&lt;BR /&gt;"BL-Layername-10 (added via lisp)"&lt;BR /&gt;0.1&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;But I get this error:&lt;BR /&gt;error: lisp value has no coercion to VARIANT with this type: (#&amp;lt;VLA-OBJECT IAcad3DPolyline 0000028b11cb0da8&amp;gt; #&amp;lt;VLA-OBJECT IAcadLWPolyline 0000028b54b185e8&amp;gt;&lt;BR /&gt;(the same error when you just use newset with makevariant function)&lt;/P&gt;&lt;P&gt;In Civil3D's GUI (2022) you can do this of course but would like to automate it with lisp.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Can somebody shine a light on this?&lt;BR /&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 10:57:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12211710#M4813</guid>
      <dc:creator>artirtas9100</dc:creator>
      <dc:date>2023-09-01T10:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12211737#M4814</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9398168"&gt;@artirtas9100&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you attached example drawing for testing&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 11:11:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12211737#M4814</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2023-09-01T11:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12211810#M4815</link>
      <description>&lt;P&gt;Very basic dwg for testing (not a production dwg with hundreds of poly's...)&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 11:17:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12211810#M4815</guid>
      <dc:creator>artirtas9100</dc:creator>
      <dc:date>2023-09-01T11:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12212505#M4816</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9398168"&gt;@artirtas9100&lt;/a&gt;&amp;nbsp;here is a lisp that asks you to select the surface then select a polyline on the layer containing polylines. It will then get all polylines on that layer and add them as a single breakline set to the selected surface.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:AddBreaklines2Surface (/ brkline brklines srf breaks ss-&amp;gt;array)
  ;; the following function from the AutoCAD Expert's Visual Lisp book
  ;; by Reinaldo N. Togores
  ;; http://lispexpert.blogspot.com/p/blog-page_94.html
  (defun ss-&amp;gt;array (sel-set / index array)
    (setq index	0
	  array	(vlax-make-safearray
		  vlax-vbObject
		  (cons 0 (1- (sslength sel-set)))
		)
    )
    (repeat (sslength sel-set)
      (vlax-safearray-put-element
	array
	index
	(vlax-ename-&amp;gt;vla-object (ssname sel-set index))
      )
      (setq index (1+ index))
    )
    (vlax-make-variant array)
  )

  (setq	srf (vlax-ename-&amp;gt;vla-object
	      (ssname (ssget "_:S+." '((0 . "AECC_TIN_SURFACE"))) 0)
	    )
  )
  (setq	brkline	 (vlax-ename-&amp;gt;vla-object
		   (setq lw
			  (car (entsel
				 "\nSelect Polyline on layer with breaklines: "
			       )
			  )
		   )
		 )
	brklines (ss-&amp;gt;array (ssget "X"
				   (list '(0 . "*POLYLINE*")
					 (cons 8 (vla-get-layer brkline))
				   )
			    )
		 )
  )
  (setq breaks (vlax-get srf 'Breaklines))
  (vlax-invoke-method
    breaks 'AddStandardBreakline brklines (strcat "added from layer: " (vla-get-layer brkline))  0.1)
					;rebuild surface
  (vlax-invoke-method srf 'rebuild)

  (princ)
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 16:41:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12212505#M4816</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2023-09-01T16:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Add a breakline to an existing surface using LISP</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12213634#M4817</link>
      <description>Jeff,&lt;BR /&gt;that ss-&amp;gt;array function is a gem... This works great! I would never have found this.&lt;BR /&gt;Hopefully I've now the necessary stuff to do something similar with points.&lt;BR /&gt;Many thanks for your efforts (and the entire lisp)!</description>
      <pubDate>Sat, 02 Sep 2023 09:56:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/add-a-breakline-to-an-existing-surface-using-lisp/m-p/12213634#M4817</guid>
      <dc:creator>artirtas9100</dc:creator>
      <dc:date>2023-09-02T09:56:01Z</dc:date>
    </item>
  </channel>
</rss>

