<?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 to rotate text by 2 points in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12402774#M21234</link>
    <description>&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a lisp which is doing a few different things.&lt;/P&gt;&lt;P&gt;I have pt3 and pt4 set as part of the routine and mtext to be inserted. The main issue I have now is the mtext is always at 0-degree rotation inside the rectangles I create. Ideally I'd like the text to follow the direction of the longest side of the rectangle. I had tried to rotate by pt3 and pt4 which are midpoints of the short sides of the rectangle however it did not work and just stopped the lisp from repeating.&lt;/P&gt;&lt;P&gt;I was planning on moving the text to 'midpoint' which is something created earlier in the lisp to identify the midpoint of the rectangle created however as I have stumbled at the first hurdle I'm not sure where to go.&lt;/P&gt;&lt;P&gt;I added the command to rotate after the 'setq mtext (entmake (list'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is a section of the routine with the rotation removed and as mentioned I'd like to rotate the text after the parameters for the mtext have been set&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;; Replace dimension with MText&lt;BR /&gt;(setq mtext (entmake&lt;BR /&gt;(list&lt;BR /&gt;'(0 . "MTEXT")&lt;BR /&gt;'(8 . "1A FF Beam") ; Layer name&lt;BR /&gt;(cons 10 (midpoint pt3 pt4)) ; Midpoint between pt3 and pt4&lt;BR /&gt;'(40 . 44.0) ; Text height&lt;BR /&gt;'(41 . 1.0) ; Relative scale factor&lt;BR /&gt;'(71 . 5) ; Attachment point (Middle center)&lt;BR /&gt;'(72 . 0) ; Justification code (Middle center)&lt;BR /&gt;'(7 . "7") ; Text color&lt;BR /&gt;'(90 . 0) ; Background fill (off)&lt;BR /&gt;(cons 1 string) ; Text string&lt;BR /&gt;'(210 0.0 0.0 1.0) ; Extrusion direction&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Mon, 27 Nov 2023 13:44:03 GMT</pubDate>
    <dc:creator>alexT5HUV</dc:creator>
    <dc:date>2023-11-27T13:44:03Z</dc:date>
    <item>
      <title>Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12402774#M21234</link>
      <description>&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a lisp which is doing a few different things.&lt;/P&gt;&lt;P&gt;I have pt3 and pt4 set as part of the routine and mtext to be inserted. The main issue I have now is the mtext is always at 0-degree rotation inside the rectangles I create. Ideally I'd like the text to follow the direction of the longest side of the rectangle. I had tried to rotate by pt3 and pt4 which are midpoints of the short sides of the rectangle however it did not work and just stopped the lisp from repeating.&lt;/P&gt;&lt;P&gt;I was planning on moving the text to 'midpoint' which is something created earlier in the lisp to identify the midpoint of the rectangle created however as I have stumbled at the first hurdle I'm not sure where to go.&lt;/P&gt;&lt;P&gt;I added the command to rotate after the 'setq mtext (entmake (list'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is a section of the routine with the rotation removed and as mentioned I'd like to rotate the text after the parameters for the mtext have been set&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;; Replace dimension with MText&lt;BR /&gt;(setq mtext (entmake&lt;BR /&gt;(list&lt;BR /&gt;'(0 . "MTEXT")&lt;BR /&gt;'(8 . "1A FF Beam") ; Layer name&lt;BR /&gt;(cons 10 (midpoint pt3 pt4)) ; Midpoint between pt3 and pt4&lt;BR /&gt;'(40 . 44.0) ; Text height&lt;BR /&gt;'(41 . 1.0) ; Relative scale factor&lt;BR /&gt;'(71 . 5) ; Attachment point (Middle center)&lt;BR /&gt;'(72 . 0) ; Justification code (Middle center)&lt;BR /&gt;'(7 . "7") ; Text color&lt;BR /&gt;'(90 . 0) ; Background fill (off)&lt;BR /&gt;(cons 1 string) ; Text string&lt;BR /&gt;'(210 0.0 0.0 1.0) ; Extrusion direction&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 13:44:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12402774#M21234</guid>
      <dc:creator>alexT5HUV</dc:creator>
      <dc:date>2023-11-27T13:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403068#M21235</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14793267"&gt;@alexT5HUV&lt;/a&gt;&amp;nbsp;DXF code 50 sets rotation. Add something like this to your entmake list:&amp;nbsp;(cons 50 (angle pt3 pt4))&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 15:20:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403068#M21235</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2023-11-27T15:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403155#M21236</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;I had tried this previously, pt3 and pt4 are picked automatically as they are finding the midpoint of the shortest side of the rectangle and it works OK for the text being positioned at 0-degrees however when adding this into the lisp the text rotates by 350.91-degrees on my current example!&lt;BR /&gt;&lt;BR /&gt;As mentioned if there is a way to rotate the text post entmake list then that would be great - I'm very new to lisp and coding all together!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 15:48:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403155#M21236</guid>
      <dc:creator>alexT5HUV</dc:creator>
      <dc:date>2023-11-27T15:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403176#M21237</link>
      <description>&lt;P&gt;How’s about this&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(vl-cmdf "_.Rotate" (entlast) "" (midpoint pt3 pt4) (* 180.0 (/ (angle pt3 pt4)  pi)))&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 27 Nov 2023 15:54:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403176#M21237</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-11-27T15:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403196#M21238</link>
      <description>&lt;P&gt;Can you post an image or a small drawing file, indicating where pt3 and pt4 are?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 15:59:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403196#M21238</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-11-27T15:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403227#M21239</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14793267"&gt;@alexT5HUV&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;'(72 . &lt;FONT color="#FF0000"&gt;0&lt;/FONT&gt;) ; Justification code (Middle center)&lt;BR /&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The &lt;A href="https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-5E5DB93B-F8D3-4433-ADF7-E92E250D2BAB" target="_blank" rel="noopener"&gt;&amp;gt;DXF Reference for Mtext&amp;lt;&lt;/A&gt; &lt;FONT color="#FF0000"&gt;does not list &lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/FONT&gt; as a choice for the code-&lt;STRONG&gt;72&lt;/STRONG&gt; entry, nor is that about justification.&amp;nbsp; Check what you really want there, and/or whether you even need to include that at all.&lt;/P&gt;
&lt;P&gt;Also, &lt;STRONG&gt;7&lt;/STRONG&gt; is for the &lt;EM&gt;Style name&lt;/EM&gt;, not the color.&amp;nbsp; I didn't plow through all of them, but there may be other mis-designations.&amp;nbsp; Double-check all the entries for validity, then see whether adding the &lt;STRONG&gt;50&lt;/STRONG&gt; entry works.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 16:15:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403227#M21239</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-11-27T16:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403244#M21240</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14793267"&gt;@alexT5HUV&lt;/a&gt;&amp;nbsp;Post a sample drawing of the results you expect. IMO there is no reason to rotate the text after insertion when it can be placed correctly initially,&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 16:19:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12403244#M21240</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2023-11-27T16:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12404927#M21241</link>
      <description>&lt;P&gt;I've sorted it all; I used an if statement to calculate if delta X or delta Y is larger between points 1 and 2 (the opposite diagonal corners of the rectangle first drawn/picked) and if Y is larger, it rotates by 90, if not it does not rotate &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Pasted below if anyone runs into the same issue in future and this might help them, even if its clunky&lt;/P&gt;&lt;LI-CODE lang="general"&gt;; Rotate MTEXT by 90 degrees if delta-y is larger than delta-x
    (setq delta-x (abs (- (car pt1) (car pt2))))
    (setq delta-y (abs (- (cadr pt1) (cadr pt2))))
    
    (if (&amp;gt; delta-y delta-x)
        (setq mtext (entmake
                      (list
                       '(0 . "MTEXT")
                       '(8 . "1A FF Beam") ; Layer name
                       (cons 10 midpt) ; Midpoint between midpt3 and midpt4
                       '(40 . 46.0) ; Text height
                       '(41 . 1.0) ; Relative scale factor
                       '(71 . 5) ; Attachment point (Middle center)
                       '(72 . 0) ; Justification code (Middle center)
                       '(7 . "7") ; Text color
                       '(90 . 0) ; Background fill (off)
                       (cons 1 string) ; Text string
                       '(210 0.0 0.0 1.0) ; Extrusion direction
                       (cons 50 (/ pi 2.0)); Rotation angle (90 degrees)
                      )
                    )
        )
        (setq mtext (entmake
                      (list
                       '(0 . "MTEXT")
                       '(8 . "1A FF Beam") ; Layer name
                       (cons 10 midpt) ; Midpoint between midpt3 and midpt4
                       '(40 . 46.0) ; Text height
                       '(41 . 1.0) ; Relative scale factor
                       '(71 . 5) ; Attachment point (Middle center)
                       '(72 . 0) ; Justification code (Middle center)
                       '(7 . "7") ; Text color
                       '(90 . 0) ; Background fill (off)
                       (cons 1 string) ; Text string
                       '(210 0.0 0.0 1.0) ; Extrusion direction
                      )
                    )
        )
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 09:08:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12404927#M21241</guid>
      <dc:creator>alexT5HUV</dc:creator>
      <dc:date>2023-11-28T09:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405048#M21242</link>
      <description>&lt;P&gt;Here is the code I have been using for more than 20 years to do 2 point text (mtext) alignment&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:align_text (/ p1 p2 e ent)
	(setq p1 (trans (getpoint "\nSelect first text align point &amp;gt;") 1 0))
	(setq p2 (trans (getpoint "\nSelect second text align point &amp;gt;")1 0))
	(if (and p1 p2)
		(setq align_text_ang (angle p1 p2))
	)
	(while (and(setq e (entsel "\nSelect text object &amp;gt;")))
	(setq ent (entget(car e)))
	(setq ent (subst (cons 50 align_text_ang)(assoc 50 ent) ent))
	(entmod ent)
	)
	(princ)
)

(defun c:alt nil (c:align_text))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 10:05:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405048#M21242</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2023-11-28T10:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405343#M21243</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556"&gt;@hak_vz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for that mate. My main aim in my lisp was to click the two corners of the rectangle and everything else worked itself out to save processes (as we repeat this lisp many, many times).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Definitely helpful tho!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 12:58:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405343#M21243</guid>
      <dc:creator>alexT5HUV</dc:creator>
      <dc:date>2023-11-28T12:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405790#M21244</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14793267"&gt;@alexT5HUV&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Glad you got it sorted. FWIW you could shorten your code to this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(setq	mtext (entmake (list '(0 . "MTEXT")
			     '(8 . "1A FF Beam") ; Layer name
			     (cons 10 midpt) ; Midpoint between midpt3 and midpt4
			     '(40 . 46.0) ; Text height
			     '(41 . 1.0) ; Relative scale factor
			     '(71 . 5)	; Attachment point (Middle center)
			     '(72 . 0)	; Justification code (Middle center)
			     '(7 . "7")	; Text color
			     '(90 . 0)	; Background fill (off)
			     (cons 1 string) ; Text string
			     '(210 0.0 0.0 1.0) ; Extrusion direction
			     ;; RJP - move the IF statement to here 
			     (cons 50
				   (if (&amp;gt; delta-y delta-x)
				     (/ pi 2.0)
				     0
				   )
			     )		; Rotation angle (90 degrees)
		       )
	      )
  )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 15:29:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405790#M21244</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2023-11-28T15:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405874#M21245</link>
      <description>Brill, thanks for that!&lt;BR /&gt;Just by the by, is there much difference in shortening the code, other than it looking neater?</description>
      <pubDate>Tue, 28 Nov 2023 16:03:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405874#M21245</guid>
      <dc:creator>alexT5HUV</dc:creator>
      <dc:date>2023-11-28T16:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405885#M21246</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14793267"&gt;@alexT5HUV&lt;/a&gt;&amp;nbsp;I prefer brevity, plus duplicating the entmake function with only one variable changing ( rotation ) could lead to an error later if something is added to one portion and left out of the other. My 2c.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 16:06:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12405885#M21246</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2023-11-28T16:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12406458#M21247</link>
      <description>&lt;P&gt;You can shorten it further.&amp;nbsp; Get rid of the incorrect 72 and 7 entries [see Message 6 -- unless "7" is actually a &lt;EM&gt;Style name&lt;/EM&gt;, in which case change the comment].&amp;nbsp; And the 210 entry is optional, defaulting to what you have, so you can omit that.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 20:07:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12406458#M21247</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-11-28T20:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12406535#M21248</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;You can shorten it further.&amp;nbsp; Get rid of the incorrect 72 and 7 entries [see Message 6 -- unless "7" is actually a &lt;EM&gt;Style name&lt;/EM&gt;, in which case change the comment].&amp;nbsp; And the 210 entry is optional, defaulting to what you have, so you can omit that.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;There is that too&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt; I got the impression the code they had worked so did not dig deeper into it.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 20:31:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12406535#M21248</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2023-11-28T20:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp to rotate text by 2 points</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12407442#M21249</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;You're right in that it works as it is. I'll give it a go of removing though if it's not actually doing anything! This is a mix of my limited knowledge, a bit of a help from our support and chat GPT&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 07:15:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-rotate-text-by-2-points/m-p/12407442#M21249</guid>
      <dc:creator>alexT5HUV</dc:creator>
      <dc:date>2023-11-29T07:15:34Z</dc:date>
    </item>
  </channel>
</rss>

