<?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: LISP Routine Request - Rotate with a reference in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9677174#M88393</link>
    <description>&lt;P&gt;You're right, I'm making shop drawings and many times I do have to rotate inclined objects to an horizontal position. your RRR lisp is saving me a lot of time, can we select an object, select base point and somehow it goes to horizontal position??&lt;/P&gt;</description>
    <pubDate>Thu, 06 Aug 2020 16:17:39 GMT</pubDate>
    <dc:creator>bfalconr</dc:creator>
    <dc:date>2020-08-06T16:17:39Z</dc:date>
    <item>
      <title>LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802755#M88384</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am doing a lot of rotating with a reference point or angle. A previous company I worked for used to have a routine that's hot key was RRR &amp;amp; would work like rotate but would automatically initiate the reference angle option after you finished your selection.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wondering if anyone here could assist me in providing a LISP that would do that? I apologize as I am a mere heathen that cannot write routines&amp;nbsp;&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 18:29:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802755#M88384</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-20T18:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802827#M88385</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;check this...do you know how to wrap it in lisp file or copy paste is in acad.lsp?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:rrr ()
 (command-s "._rotate" pause "" pause "_r")
 (princ) 
)  &lt;/PRE&gt;</description>
      <pubDate>Mon, 20 May 2019 18:59:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802827#M88385</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-05-20T18:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802841#M88386</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;...&amp;nbsp;RRR&amp;nbsp;... would work like rotate but would automatically initiate the reference angle option after you finished your selection.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If "your selection" would sometimes need to be more than one thing, try this:&lt;/P&gt;
&lt;PRE&gt;(defun C:RRR ()
  (command "_.rotate" (ssget) "" pause "_reference")
)&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 May 2019 19:06:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802841#M88386</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-05-20T19:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802847#M88387</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;@Anonymous&amp;nbsp;hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;check this...do you know how to wrap it in lisp file or copy paste is in acad.lsp?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:rrr ()
 (command-s "._rotate" pause "" pause "_r")
 (princ) 
)  &lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry. I should have specified that I need to rotate multiple objects at the same time. That is my mistake. I do know how to paste into a .lisp file though!&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 19:15:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802847#M88387</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-20T19:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802858#M88388</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;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;...&amp;nbsp;RRR&amp;nbsp;... would work like rotate but would automatically initiate the reference angle option after you finished your selection.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If "your selection" would sometimes need to be more than one thing, try this:&lt;/P&gt;
&lt;PRE&gt;(defun C:RRR ()
  (command "_.rotate" (ssget) "" pause "_reference")
)&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This works. Though it is asking for base point &amp;amp; then 2 points to define the reference angle. Not to be too picky but is there a way to make the base point selection the first point of the reference angle? Therefore it would trim down one click.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 19:19:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802858#M88388</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-20T19:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802930#M88389</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;....it is asking for base point &amp;amp; then 2 points to define the reference angle.&amp;nbsp;... is there a way to make the base point selection the first point of the reference angle? Therefore it would trim down one click.&amp;nbsp;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this little adjustment:&lt;/P&gt;
&lt;PRE&gt;(defun C:RRR ()
  (command "_.rotate" (ssget) "" pause "_reference" &lt;FONT color="#0000ff"&gt;"@"&lt;/FONT&gt;)
)&lt;/PRE&gt;
&lt;P&gt;That, of course, is valid only when the base point is, in fact, always usable as the first point of defining the reference direction.&amp;nbsp; The ROTATE command does not assume that, but if it's always true in your usage, that should do.&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 19:57:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8802930#M88389</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-05-20T19:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8803026#M88390</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;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;....it is asking for base point &amp;amp; then 2 points to define the reference angle.&amp;nbsp;... is there a way to make the base point selection the first point of the reference angle? Therefore it would trim down one click.&amp;nbsp;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this little adjustment:&lt;/P&gt;
&lt;PRE&gt;(defun C:RRR ()
  (command "_.rotate" (ssget) "" pause "_reference" &lt;FONT color="#0000ff"&gt;"@"&lt;/FONT&gt;)
)&lt;/PRE&gt;
&lt;P&gt;That, of course, is valid only when the base point is, in fact, always usable as the first point of defining the reference direction.&amp;nbsp; The ROTATE command does not assume that, but if it's always true in your usage, that should do.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This is exactly what I was looking for. The other previous options worked for what the interpretation was. Of course that is because I was not detailed enough in my initial request. Thank you much for your assistance!&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 20:38:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/8803026#M88390</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-20T20:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9674401#M88391</link>
      <description>&lt;P&gt;you guys are just the best, can you share any other lisp like this to speed your daily workflow,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 13:14:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9674401#M88391</guid>
      <dc:creator>bfalconr</dc:creator>
      <dc:date>2020-08-05T13:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9675485#M88392</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2183100"&gt;@bfalconr&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... can you share any other lisp like this to speed your daily workflow,&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You would need to be more specific about what you mean by "like this."&amp;nbsp; For instance, are you looking only for routines about Rotating?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you mean it more generically, Search for a particular kind of thing you're looking for.&amp;nbsp; Or, there are some threads with favorites posted, such as &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/share-your-favorite-usefull-lisp-files/m-p/8065941" target="_blank" rel="noopener"&gt;&amp;gt;this one&amp;lt;&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 21:56:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9675485#M88392</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-08-05T21:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9677174#M88393</link>
      <description>&lt;P&gt;You're right, I'm making shop drawings and many times I do have to rotate inclined objects to an horizontal position. your RRR lisp is saving me a lot of time, can we select an object, select base point and somehow it goes to horizontal position??&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 16:17:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9677174#M88393</guid>
      <dc:creator>bfalconr</dc:creator>
      <dc:date>2020-08-06T16:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9677411#M88394</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2183100"&gt;@bfalconr&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... I do have to rotate inclined objects to an horizontal position. .... can we select an object, select base point and somehow it goes to horizontal position??&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What kind(s) of object?&amp;nbsp; One at a time, or multiple?&amp;nbsp; For many kinds of things, or for multiple objects together, it's not clear to me what would be the aspect that you want made horizontal.&amp;nbsp; And are you talking about 2D drawing, and "inclined" meaning not aligned with the X &lt;EM&gt;axis&lt;/EM&gt;, or 3D drawing, and "inclined" meaning not lying in the XY &lt;EM&gt;plane&amp;nbsp;&lt;/EM&gt;?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 17:54:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9677411#M88394</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-08-06T17:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9821698#M88395</link>
      <description>&lt;P&gt;how do i put a dialog command on that rotation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(command "rotate" ss "" tt "\nDirection to Connect: ")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but at command line it not showing the word "direction to connect" how do i change that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ss is my selection unit,&lt;/P&gt;&lt;P&gt;tt is my preset point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;</description>
      <pubDate>Sat, 24 Oct 2020 02:50:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9821698#M88395</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-24T02:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9821815#M88396</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In general when using (command), you collect\prepare all the arguments needed and than supply them to (command) function. this is better then pausing in mid (command) cause if the user wants to break the process, he can exit quietly (instead of getting errors).&lt;/P&gt;&lt;P&gt;as you can see in my code, all inputs are wrapped in a logical (and). this way responding with null reply (pressing just enter) at any prompt, will exit clean. on the other hand by doing so you are giving the dragging feature that AutoCAD offers by using pause argument. so it depend on what exactly you want to achieve?!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;enjoy&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:xxx (/ ss tt rot)
 (if (and
      (setq ss (ssget))
      (setq tt (getpoint "\nSpecify base point: "))
      (setq rot (getangle tt "\ndirection to connect: "))
     )
  (command "rotate" ss "" tt (angtos rot 0 4))
 )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Oct 2020 05:48:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9821815#M88396</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2020-10-24T05:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9826260#M88397</link>
      <description>&lt;P&gt;Owh.. i see..&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Actually i dont know how to convert that the value taken into degree..&lt;/P&gt;&lt;P&gt;Now it suit..&lt;/P&gt;&lt;P&gt;TQ for your code.. i will think of that to rearrange in my code..&lt;/P&gt;</description>
      <pubDate>Tue, 27 Oct 2020 04:12:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/9826260#M88397</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-27T04:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/10987866#M88398</link>
      <description>&lt;P&gt;Please help to fix the error !&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:rotate_with_my_osmode ( / )
(setvar "cmdecho" 0) 
(command "rotate" (ssget) "" pause "r" "_end" "\\" "\\" "P" "_nea" pause "_per" pause)
(setvar "cmdecho" 1)
(princ))&lt;/LI-CODE&gt;&lt;P&gt;The error was after adding &lt;FONT color="#0000FF"&gt;"_end"&lt;/FONT&gt;, &lt;FONT color="#0000FF"&gt;"_nea"&lt;/FONT&gt; &amp;amp; &lt;FONT color="#0000FF"&gt;"_per"&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 06:16:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/10987866#M88398</guid>
      <dc:creator>Automohan</dc:creator>
      <dc:date>2022-03-07T06:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/10988520#M88399</link>
      <description>&lt;P&gt;I get no error.&amp;nbsp; What is the error message?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 12:58:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/10988520#M88399</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-03-07T12:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Routine Request - Rotate with a reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/10988544#M88400</link>
      <description>&lt;P&gt;Command: ROTATE_WITH_MY_OSMODE&lt;BR /&gt;Select objects: 1 found&lt;/P&gt;&lt;P&gt;Select objects:&lt;BR /&gt;No Endpoint found for specified point.&lt;BR /&gt;Requires valid numeric angle or two points.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 13:13:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-routine-request-rotate-with-a-reference/m-p/10988544#M88400</guid>
      <dc:creator>Automohan</dc:creator>
      <dc:date>2022-03-07T13:13:57Z</dc:date>
    </item>
  </channel>
</rss>

