<?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 Lisp for SLOPE in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109723#M119782</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;We need draw slope symbol for each profile drawing, I try to write a lisp, when I pick up 2 points, form ground profile, the slope triangle with slope calculate (SLOPE XX%) show on the drawing, the formula for slope is : xx%=∆y/∆x.&lt;/P&gt;&lt;P&gt;I wrote a lisp as below, the result come out as PIC1, but I want result looks as PIC 2, text show SLOPE 36% instead 36.13 I don’t know how to combine the text SLOPE with my calculation 36.13, and how to get rid off the decimal.&lt;/P&gt;&lt;P&gt;(defun c:mcir()&lt;/P&gt;&lt;P&gt;(setvar "cmdecho" 0)&lt;/P&gt;&lt;P&gt;(setq pt1 (getpoint "Enter left Point:"))&lt;/P&gt;&lt;P&gt;(setq px1 (car pt1))&lt;/P&gt;&lt;P&gt;(setq py1 (cadr pt1))&lt;/P&gt;&lt;P&gt;(setq pt2 (getpoint "Enter right Point:"))&lt;/P&gt;&lt;P&gt;(setq px2 (car pt2))&lt;/P&gt;&lt;P&gt;(setq py2 (cadr pt2))&lt;/P&gt;&lt;P&gt;(setq px3 (+ px1 10))&lt;/P&gt;&lt;P&gt;(setq pt3 (list px3 py1))&lt;/P&gt;&lt;P&gt;(setq myb (- px2 px1))&lt;/P&gt;&lt;P&gt;(setq px4 (+ px1 10))&lt;/P&gt;&lt;P&gt;(setq mya (- py2 py1))&lt;/P&gt;&lt;P&gt;(setq myb (- px2 px1))&lt;/P&gt;&lt;P&gt;(setq py4 (+ py1 (* (/ mya myb) 10)))&lt;/P&gt;&lt;P&gt;(setq pt4 (list px4 py4))&lt;/P&gt;&lt;P&gt;(command "pline" pt1 pt3 pt4 "c")&lt;/P&gt;&lt;P&gt;(setq px5 (/ (+ px1 px4) 2))&lt;/P&gt;&lt;P&gt;(setq py5 (/ (+ py1 py4) 2))&lt;/P&gt;&lt;P&gt;(setq pt5 (list px5 py5))&lt;/P&gt;&lt;P&gt;(setq ang (angle pt1 pt2))&lt;/P&gt;&lt;P&gt;(setq ann (/ (* ang 180) 3.14 ))&lt;/P&gt;&lt;P&gt;(setq slp (* 100 (/ mya myb)))&lt;/P&gt;&lt;P&gt;(command "text" pt5 2.5 ann slp)&lt;/P&gt;&lt;P&gt;(prin1)&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;In PIC1, all the red text and dimension are reference.&lt;/P&gt;&lt;P&gt;Thank very much for your help in advance.&lt;/P&gt;&lt;P&gt;Bin&lt;/P&gt;</description>
    <pubDate>Thu, 25 May 2017 19:55:56 GMT</pubDate>
    <dc:creator>Bin2009</dc:creator>
    <dc:date>2017-05-25T19:55:56Z</dc:date>
    <item>
      <title>Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109723#M119782</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;We need draw slope symbol for each profile drawing, I try to write a lisp, when I pick up 2 points, form ground profile, the slope triangle with slope calculate (SLOPE XX%) show on the drawing, the formula for slope is : xx%=∆y/∆x.&lt;/P&gt;&lt;P&gt;I wrote a lisp as below, the result come out as PIC1, but I want result looks as PIC 2, text show SLOPE 36% instead 36.13 I don’t know how to combine the text SLOPE with my calculation 36.13, and how to get rid off the decimal.&lt;/P&gt;&lt;P&gt;(defun c:mcir()&lt;/P&gt;&lt;P&gt;(setvar "cmdecho" 0)&lt;/P&gt;&lt;P&gt;(setq pt1 (getpoint "Enter left Point:"))&lt;/P&gt;&lt;P&gt;(setq px1 (car pt1))&lt;/P&gt;&lt;P&gt;(setq py1 (cadr pt1))&lt;/P&gt;&lt;P&gt;(setq pt2 (getpoint "Enter right Point:"))&lt;/P&gt;&lt;P&gt;(setq px2 (car pt2))&lt;/P&gt;&lt;P&gt;(setq py2 (cadr pt2))&lt;/P&gt;&lt;P&gt;(setq px3 (+ px1 10))&lt;/P&gt;&lt;P&gt;(setq pt3 (list px3 py1))&lt;/P&gt;&lt;P&gt;(setq myb (- px2 px1))&lt;/P&gt;&lt;P&gt;(setq px4 (+ px1 10))&lt;/P&gt;&lt;P&gt;(setq mya (- py2 py1))&lt;/P&gt;&lt;P&gt;(setq myb (- px2 px1))&lt;/P&gt;&lt;P&gt;(setq py4 (+ py1 (* (/ mya myb) 10)))&lt;/P&gt;&lt;P&gt;(setq pt4 (list px4 py4))&lt;/P&gt;&lt;P&gt;(command "pline" pt1 pt3 pt4 "c")&lt;/P&gt;&lt;P&gt;(setq px5 (/ (+ px1 px4) 2))&lt;/P&gt;&lt;P&gt;(setq py5 (/ (+ py1 py4) 2))&lt;/P&gt;&lt;P&gt;(setq pt5 (list px5 py5))&lt;/P&gt;&lt;P&gt;(setq ang (angle pt1 pt2))&lt;/P&gt;&lt;P&gt;(setq ann (/ (* ang 180) 3.14 ))&lt;/P&gt;&lt;P&gt;(setq slp (* 100 (/ mya myb)))&lt;/P&gt;&lt;P&gt;(command "text" pt5 2.5 ann slp)&lt;/P&gt;&lt;P&gt;(prin1)&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;In PIC1, all the red text and dimension are reference.&lt;/P&gt;&lt;P&gt;Thank very much for your help in advance.&lt;/P&gt;&lt;P&gt;Bin&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 19:55:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109723#M119782</guid>
      <dc:creator>Bin2009</dc:creator>
      <dc:date>2017-05-25T19:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109766#M119783</link>
      <description>&lt;P&gt;You can just use (fix ann) it will truncate the decimal. It will not round it though. so (33.9) would be 33.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another option would be to use (setq ann (ANGTOS ang 0 0))&lt;/P&gt;
&lt;P&gt;Angtos will round appropriately, and take care of the conversion from Radians to Decimal Degrees.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good Luck,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 20:21:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109766#M119783</guid>
      <dc:creator>SeeMSixty7</dc:creator>
      <dc:date>2017-05-25T20:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109866#M119784</link>
      <description>&lt;P&gt;Many ways to do this and you may find several&amp;nbsp;variations in these forums and on google. One example below. Minimal testing done. Note that rising slopes are positive and falling are negative (based on the sequence of pick points)&lt;/P&gt;
&lt;PRE&gt;;;Ranjit Singh&lt;BR /&gt;;;5/25/17&lt;BR /&gt;&lt;BR /&gt;(defun c:somefunc&amp;nbsp; (/ pt1 pt2)&lt;BR /&gt;&amp;nbsp;(entmakex&lt;BR /&gt;&amp;nbsp; (list '(0 . "MTEXT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '(100 . "AcDbEntity")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '(100 . "AcDbMText")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (cons 10 (mapcar '+ (list 0 (/ (getvar 'textsize) 2.0)) (mapcar '/ (mapcar '+ (setq pt1 (getpoint)) (setq pt2 (getpoint))) '(2 2))))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (cons 1 (strcat "SLOPE "(rtos ((lambda (x) (* -100 (/ (cadr x) (abs (car x))))) (mapcar '- pt1 pt2)) 2 0) "%"))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '(71 . 8)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (cons 50 (if (&amp;gt; (car pt1) (car pt2)) (+ pi (angle pt1 pt2)) (angle pt1 pt2))))))&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="slope_label_2.gif" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/360297i398FDD1D8E3165CC/image-size/large?v=v2&amp;amp;px=999" role="button" title="slope_label_2.gif" alt="slope_label_2.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 21:23:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109866#M119784</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-05-25T21:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109953#M119785</link>
      <description>&lt;PRE&gt;(defun c:sl (/ p1 dc ms p2 ag ds p3 ls tx pt) (vl-load-com)
  (if (setq p1 (getpoint "\nSpecify first point:"))
    (if (setq dc (vlax-get (vlax-get-acad-object) 'activedocument)
          ms (vlax-get dc 'modelspace) p2 (getpoint "\nSpecify next point:"))
      (progn (vla-startundomark dc)
        (setq ag (angle p1 p2) ds (abs (- (car p1) (car p2))) p3 (cond
          ((&amp;lt; 0 ag (/ pi 2)) (polar p1 0 ds))
          ((&amp;lt; (/ pi 2) ag pi) (polar p1 pi ds))
          ((&amp;lt; pi ag (+ pi (/ pi 2))) (polar p2 0 ds))
          ((&amp;lt; (+ pi (/ pi 2)) ag (* 2 pi)) (polar p2 pi ds))))
        (vla-put-Closed (vla-addLightWeightPolyline ms (vlax-safearray-fill
          (vlax-make-safearray vlax-vbdouble (cons 0 (1- (length (setq ls (list
            (car p1) (cadr p1) (car p2) (cadr p2) (car p3) (cadr p3))))))) ls)) -1)
        (setq tx (vlax-invoke ms 'addtext (strcat "SLOPE " (rtos (abs (* 100 (/ (-
          (cadr p1) (cadr p2)) (- (car p1) (car p2))))) 2 0) "%")
            (setq pt (polar (mapcar '(lambda(a b) (/ (+ a b) 2)) p1 p2)
              (if (&amp;lt; (/ pi 2) ag (+ pi (/ pi 2))) (+ ag (+ pi (/ pi 2)))
                (+ ag (/ pi 2))) 35)) 25))
        (vla-put-Alignment tx 10) (vla-put-TextAlignmentPoint tx (vlax-3d-point pt))
        (vla-put-Rotation tx (if (&amp;lt; (/ pi 2) ag (+ pi (/ pi 2))) (+ ag pi) ag))
        (vla-endundomark dc)
      )
    )
  ) (prin1)
)&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 May 2017 22:00:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7109953#M119785</guid>
      <dc:creator>ademercan1</dc:creator>
      <dc:date>2017-05-25T22:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110213#M119786</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3261555"&gt;@Ranjit_Singh&lt;/a&gt;'s response is probably the best. &amp;nbsp;If you use a vertical scale factor other than 1.0 (I usually use 10.0), then divide the dy/dx division by another 10. &amp;nbsp;I am not used to grading or pipe profiles having a 36% grade.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think an improvement would be to be able to pick just the line (or polyline) segment rather than having to make two picks. &amp;nbsp;You may also have to translate coordinates from some UCS to World or vice versa. &amp;nbsp;In fact if the profile continues via a meandering polyline, then you could label all the tangents with one command.&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 02:01:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110213#M119786</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2017-05-26T02:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110264#M119787</link>
      <description>&lt;P&gt;Thank for your reply and explain, it's very useful.&lt;/P&gt;&lt;P&gt;This slope symbol is special one which we use to mark the elevation change in work space, where on the mountain area, someplace is really steep, the ground profile is for section of the pipeline. Yes the pipe is hard to change elevation like that.&lt;/P&gt;&lt;P&gt;Pick a line is a great idea, I will try it.&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;Bin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 02:51:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110264#M119787</guid>
      <dc:creator>Bin2009</dc:creator>
      <dc:date>2017-05-26T02:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110269#M119788</link>
      <description>&lt;P&gt;Thank!&lt;/P&gt;&lt;P&gt;the&amp;nbsp;&lt;SPAN&gt; (setq ann (ANGTOS ang 0 0)) is what I am looking for! I will try it tomorrow &amp;nbsp;when I go to work,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Bin&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 02:55:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110269#M119788</guid>
      <dc:creator>Bin2009</dc:creator>
      <dc:date>2017-05-26T02:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110271#M119789</link>
      <description>&lt;P&gt;Thanks, your lisp looks great!&lt;/P&gt;&lt;P&gt;I am a beginner, only know some simple function, your function looks more powerful, definitely I need study on it!&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Bin&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 02:58:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110271#M119789</guid>
      <dc:creator>Bin2009</dc:creator>
      <dc:date>2017-05-26T02:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110640#M119790</link>
      <description>&lt;P&gt;Well, since none of these routines does the zero proof, the all programs fails if you try to do that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4650494"&gt;@ademercan1&lt;/a&gt;'s routine&amp;nbsp;fails even if the slope is 0.&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 08:28:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110640#M119790</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2017-05-26T08:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110925#M119791</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An other version of Slope - Routine: SlopePC from Gilles (gile)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks Gilles, Regards, Patrice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; 
;; 
;; Routine: SlopePC       - PentePC 
;; Create a Text Object   - Cree un objet texte le long de la pente 
;; CLIC on 2 Points       - Il suffit de cliquer 2 points 
;; Par GC (gile) le 08/06/2009 (French Forum: cadxp.com) 
;; 
;; Change TEXTSIZE variable BEFORE running to get the right height for Text
;; 

 
(defun c:SlopePC (/ p1 p2 a)

  (if
    (and
      (setq p1 (getpoint "\n1st Point: "))
      (setq p2 (getpoint "\n2nd Point: "))
      (setq a (angle p1 p2))
    )
     (entmake
       (list
	 '(0 . "TEXT")
	 '(100 . "AcDbEntity")
	 '(100 . "AcDbText")
	 '(10 0. 0. 0.)
	 (cons 40 (getvar 'textsize))
	 (cons 1
	       (strcat (rtos (abs (* 100 (/ (sin a) (cos a)))) 2 2) " %")
	 )
	 (cons 50
	       (if (minusp (cos a))
		 (+ pi a)
		 a
	       )
	 )
	 '(72 . 1)
	 (cons 11 (mapcar '(lambda (x1 x2) (/ (+ x1 x2) 2.)) p1 p2))
	 '(73 . 1)
       )
     )
  )
  (princ)
)
 
&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 May 2017 11:14:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7110925#M119791</guid>
      <dc:creator>braudpat</dc:creator>
      <dc:date>2017-05-26T11:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7111758#M119792</link>
      <description>&lt;P&gt;Your lisp works great for me in Civil 3D, thank a lot!&lt;/P&gt;&lt;P&gt;I need run this lisp in civil 3d, all other lisp post here are work great in Autocad, but only yours work properly in Civil3D, I don’t know why and trying to figure out.&lt;/P&gt;&lt;P&gt;Bin&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 17:23:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/7111758#M119792</guid>
      <dc:creator>Bin2009</dc:creator>
      <dc:date>2017-05-26T17:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/12829486#M119793</link>
      <description>&lt;P&gt;Does anyone have a version of this that has Annotative Text (scaling)?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 10:51:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/12829486#M119793</guid>
      <dc:creator>robert.maxfieldCHK7M</dc:creator>
      <dc:date>2024-06-10T10:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for SLOPE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/13298744#M119794</link>
      <description>&lt;P&gt;doesnt´work in spanish autocad...&lt;/P&gt;&lt;P&gt;works with other ucs???&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 12:01:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-slope/m-p/13298744#M119794</guid>
      <dc:creator>kibitotato</dc:creator>
      <dc:date>2025-02-04T12:01:42Z</dc:date>
    </item>
  </channel>
</rss>

