<?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: Create Points Interpolate With Lisp in Civil 3D Customization Forum</title>
    <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5048200#M17498</link>
    <description>&lt;P&gt;You know... I think I just had limited understanding of the way the existing interpolate commands worked. &amp;nbsp;I didn't realise that instead of having to know and input a distance, I could actually select two end points (while it was prompting me to enter a known distance) and it would calculate the grade based on endpoints. &amp;nbsp;It looks like I can do exactly what I need with the tools already provided... I just didn't understand them enough. &amp;nbsp;I sat there and played with all of them for about 40 mins after reading your post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;</description>
    <pubDate>Wed, 21 May 2014 21:25:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-05-21T21:25:34Z</dc:date>
    <item>
      <title>Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775209#M17486</link>
      <description>&lt;P&gt;Here is what I need to do.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;createpointinterpolate&lt;/P&gt;&lt;P&gt;pick the 2 points&lt;/P&gt;&lt;P&gt;then automaticly enter&lt;/P&gt;&lt;P&gt;1 (for number of points)&lt;/P&gt;&lt;P&gt;30 (for offset)&lt;/P&gt;&lt;P&gt;PG (for description)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can edit the lisp to change the offset and description as needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have about 150 of these to do so I'm trying to automate it as much as possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just can't figure out how to do this with my limited lisp hacking ability &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2014 15:13:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775209#M17486</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-26T15:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775257#M17487</link>
      <description>&lt;P&gt;Here is a quickly penned solution that does this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;;;Add 1 interpolated CogoPoint between 2 points selected on screen.
;;Includes preset offset and description variables.
;;by Jeff Mishler, Jan. 26, 2014
(defun c:int1point (/	    *acad*  c3d	    c3ddoc  desc    dir
		    doc	    midpt   offset  p1	    p2	    p3
		    point   points  prod    prodstr
		   )
  (vl-load-com)
  (setq prod (vlax-product-key))
  (setq	prodStr	(strcat	"AeccXUiLand.AeccApplication"
			(cond ((vl-string-search "\\R17.0\\" prod)
			       ".4.0"
			      )
			      ;;2007
			      ((vl-string-search "\\R17.1\\" prod)
			       ".5.0"
			      )
			      ;;2008
			      ((vl-string-search "\\R17.2\\" prod)
			       ".6.0"
			      )
			      ;;2009
			      ((vl-string-search "\\R18.0\\" prod)
			       ".7.0"
			      )
			      ;;2010
			      ((vl-string-search "\\R18.1\\" prod)
			       ".8.0"
			      )
			      ;;2011
			      ((vl-string-search "\\R18.2\\" prod)
			       ".9.0"
			      )
			      ;;2012
			      ((vl-string-search "\\R19.0\\" prod)
			       ".10.0"
			      )
			      ;;2013
			      ((vl-string-search "\\R19.1\\" prod)
			       ".10.3"
			      )
			      ;;2014
			      (t "")
			)
		)
  )
  (setq	offset 30.0
	desc "PG"
  )
  (if (and (setq *acad* (vlax-get-acad-object))
	   (setq doc (vla-get-activedocument *acad*))
	   (setq C3D (vla-getinterfaceobject *acad* prodStr))
	   (setq C3Ddoc (vla-get-activedocument C3D))
	   (setq points (vlax-get c3ddoc 'points))
      )
    (progn
      (vla-startundomark doc)
      (while (and (setq p1 (getpoint "\nFirst point: "))
		  (setq p2 (getpoint p1 "....second point: "))
	     )
	(setq midpt (mapcar '(lambda (a b)
			       (/ (+ a b) 2.0)
			     )
			    p1
			    p2
		    )
	      dir   (angle p1 p2)
	)
	(setq p3 (polar midpt (- dir (* pi 0.5)) offset))
	(setq point (vlax-invoke points 'add p3))
      )
      (vlax-release-object C3D)
    )
  )
  (princ)
)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2014 16:14:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775257#M17487</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2014-01-26T16:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775301#M17488</link>
      <description>&lt;P&gt;Wow. Pretty close.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Needs to be able to use the elevation of the cogo point to interpolate the new elevation.&lt;/P&gt;&lt;P&gt;Set the the raw description value of the cogo point to be created to the value in desc.&lt;/P&gt;&lt;P&gt;This uses my description keys to set how the point looks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!!!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2014 17:02:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775301#M17488</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-26T17:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775331#M17489</link>
      <description>&lt;P&gt;If you existing CogoPoint style(s) are ste to display at elevation this would work by snapping to the node. BTW, you didn't say between 2 cogopoints, so I had to assume you were picking 2 points on the screen (such as endpoints of lines, near to a featureline, etc.) so it uses the elevations of those picked points.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To add the description (yep, I forgot this part), add this line of code immediately after the (setq point .... ) line:&lt;/P&gt;
&lt;P&gt;(vlax-put-property point 'rawdescription desc)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, if you want to select 2 cogopoints instead of 2 random points via osnap, that will be a bit more code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2014 17:24:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775331#M17489</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2014-01-26T17:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775339#M17490</link>
      <description>&lt;P&gt;That will work.&lt;/P&gt;&lt;P&gt;I set the style to be at point elev.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A Million Thank You's!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2014 17:38:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775339#M17490</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-26T17:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775343#M17491</link>
      <description>&lt;P&gt;Glad I could help! In caae you really want to just select 2 cogopoints, here's another version that does this:&lt;/P&gt;
&lt;PRE&gt;(defun c:int1point_cgpoints (/	    *acad*  c3d	    c3ddoc  desc    dir
		    doc	    midpt   offset  p1	    p2	    p3
		    point   points  prod    prodstr
		   )
  (vl-load-com)
  (setq prod (vlax-product-key))
  (setq	prodStr	(strcat	"AeccXUiLand.AeccApplication"
			(cond ((vl-string-search "\\R17.0\\" prod)
			       ".4.0"
			      )
			      ;;2007
			      ((vl-string-search "\\R17.1\\" prod)
			       ".5.0"
			      )
			      ;;2008
			      ((vl-string-search "\\R17.2\\" prod)
			       ".6.0"
			      )
			      ;;2009
			      ((vl-string-search "\\R18.0\\" prod)
			       ".7.0"
			      )
			      ;;2010
			      ((vl-string-search "\\R18.1\\" prod)
			       ".8.0"
			      )
			      ;;2011
			      ((vl-string-search "\\R18.2\\" prod)
			       ".9.0"
			      )
			      ;;2012
			      ((vl-string-search "\\R19.0\\" prod)
			       ".10.0"
			      )
			      ;;2013
			      ((vl-string-search "\\R19.1\\" prod)
			       ".10.3"
			      )
			      ;;2014
			      (t "")
			)
		)
  )
  (setq	offset 30.0
	desc "PG"
  )
  (if (and (setq *acad* (vlax-get-acad-object))
	   (setq doc (vla-get-activedocument *acad*))
	   (setq C3D (vla-getinterfaceobject *acad* prodStr))
	   (setq C3Ddoc (vla-get-activedocument C3D))
	   (setq points (vlax-get c3ddoc 'points))
      )
    (progn
      (vla-startundomark doc)
      (while (and (princ "\nFirst point: ")
		  (setq ss1 (ssget ":S" '((0 . "AECC_COGO_POINT"))))
		  (princ "....second point: ")
		  (setq ss2 (ssget ":S" '((0 . "AECC_COGO_POINT"))))
	     )
	(setq cg1 (vlax-ename-&amp;gt;vla-object (ssname ss1 0))
	      cg2 (vlax-ename-&amp;gt;vla-object (ssname ss2 0))
	      p1 (vlax-get cg1 'location)
	      p2 (vlax-get cg2 'location)
	      )
	(setq midpt (mapcar '(lambda (a b)
			       (/ (+ a b) 2.0)
			     )
			    p1
			    p2
		    )
	      dir   (angle p1 p2)
	)
	(setq p3 (polar midpt (- dir (* pi 0.5)) offset))
	(setq point (vlax-invoke points 'add p3))
	(vlax-put-property point 'rawdescription desc)
      )
      (vlax-release-object C3D)
    )
  )
  (princ)
)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2014 17:47:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775343#M17491</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2014-01-26T17:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775347#M17492</link>
      <description>&lt;P&gt;Sweet!!!&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Even Better.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'd rather have my points at 0.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks Again!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2014 17:57:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/4775347#M17492</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-26T17:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5046578#M17493</link>
      <description>&lt;P&gt;Jeff.. &amp;nbsp;Your solution is so very close to a function I am trying to perform as well, I'd thought I'd ask if you have a suggestion for me. &amp;nbsp;I am hoping to be able to select a start point (have it prompt me for an elevation) pick and end point (have it prompt me for an elevation) and then create interpolated point objects along that line. &amp;nbsp;If it could ask me how many points (the way the interpolate command does), but also prompt me for offset values and point descriptions, that would be perfect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are there modifications to your existing code that would allow me to do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time and input! &amp;nbsp;I really appreciate your expertise.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2014 15:03:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5046578#M17493</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-21T15:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5046758#M17494</link>
      <description>&lt;P&gt;Have you tried create points&amp;gt;Interpolate&amp;gt;by relative location.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;create points&amp;gt;Interpolate&amp;gt;by incremantal distance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use these all the time when I calc staking points.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jeff's routine worked great for the grading plans I was working on when he wrote them for me.&lt;/P&gt;&lt;P&gt;It's easy to modify the offset and desc in the lisp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2014 15:36:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5046758#M17494</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-21T15:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5047524#M17495</link>
      <description>&lt;P&gt;That command is so close as well... the only issue is that I need to be able to snap to the location I want a graded point to appear, otherwise I will have to list all my distances in a seperate step before entering the command and creating points. &amp;nbsp;I realize that I didn't mention that in the above. &amp;nbsp;Thanks for the reply.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2014 17:55:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5047524#M17495</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-21T17:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5047618#M17496</link>
      <description>&lt;P&gt;CreatePoints&amp;gt;Interpolate&amp;gt;Perpendicilar will let you pick where you&lt;/P&gt;&lt;P&gt;want the points. I'll create a polyline (can be a curvey one too) between&lt;/P&gt;&lt;P&gt;the 2 grade points.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So you could do this......&lt;/P&gt;&lt;P&gt;use the divide command to set nodes equally along a poly line or line&lt;/P&gt;&lt;P&gt;set your osnaps to node&lt;/P&gt;&lt;P&gt;CreatePoints&amp;gt;Interpolate&amp;gt;Perpendicilar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have your command line view set to 4 spaces (I have dynmode set to 0, I'm a little old school)&lt;/P&gt;&lt;P&gt;it will display the distances between the 2 points you picked in my last response, I have&amp;nbsp;&lt;/P&gt;&lt;P&gt;a HP 48 emulator I use on screen or a HP 49 sitting on my desk. a quick divide and&lt;/P&gt;&lt;P&gt;you have your distance. I admit being able to just tell it 3 points would be great.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2014 18:21:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5047618#M17496</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-21T18:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5047620#M17497</link>
      <description>The code I posted could be modified relatively easily. Unfortunately, I do not currently have any time to do so.</description>
      <pubDate>Wed, 21 May 2014 18:22:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5047620#M17497</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2014-05-21T18:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5048200#M17498</link>
      <description>&lt;P&gt;You know... I think I just had limited understanding of the way the existing interpolate commands worked. &amp;nbsp;I didn't realise that instead of having to know and input a distance, I could actually select two end points (while it was prompting me to enter a known distance) and it would calculate the grade based on endpoints. &amp;nbsp;It looks like I can do exactly what I need with the tools already provided... I just didn't understand them enough. &amp;nbsp;I sat there and played with all of them for about 40 mins after reading your post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2014 21:25:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/5048200#M17498</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-21T21:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/6021976#M17499</link>
      <description>&lt;P&gt;Interesting post.&lt;/P&gt;&lt;P&gt;I wonder if it´s possible to place a LISP routine in the Tool Palette that lets me place a CivilPoint with a certain description and elevation and so on?&lt;/P&gt;&lt;P&gt;Anyone that could give a "start-LISP" for me to understand how it´s done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to have a Tool Palette with traffic signs made from Civil COGO point. I want to have one point type for stop signs, another one for cycle ways and so on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I don´t know where to start. I can place a point&amp;nbsp;command in Tool Palette but then C3D asks for description and that part I want to describe in the LISP routine.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 14:46:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/6021976#M17499</guid>
      <dc:creator>hakangus</dc:creator>
      <dc:date>2016-02-03T14:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/6022041#M17500</link>
      <description>Yes, this would be relatively simple to create. I'll try to get you an example, but please start a new thread instead of hijacking this older one that is only loosely related.</description>
      <pubDate>Wed, 03 Feb 2016 15:16:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/6022041#M17500</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2016-02-03T15:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create Points Interpolate With Lisp</title>
      <link>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/6022502#M17501</link>
      <description>&lt;P&gt;Easiest way is to create a description key for what you want.&lt;/P&gt;&lt;P&gt;Ie.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To create a Masked Circle with a number in it i have a description key set up with "SN $1"&lt;/P&gt;&lt;P&gt;I input SN 1 and I get a masked circle with the number 1 in it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if you want a stop sign simply create a key for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Bo&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 18:37:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-customization-forum/create-points-interpolate-with-lisp/m-p/6022502#M17501</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-03T18:37:44Z</dc:date>
    </item>
  </channel>
</rss>

