<?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: Ask for lisp for labelling coordinates in rotated view in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354845#M59869</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925226i059F67258841AB5C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This?&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:demo ( / pt pt1 txtx txty txtz)
  (if (and (setq pt (getpoint "\nSpecify a point to labell: "))
	   (setq pt1 (getpoint pt "\nSpecify text starting point: "))
      )
    (progn
      (setq pt	 (trans pt 1 0)
	    pt1  (trans pt1 1 0)
	    txtx (strcat "E=" (rtos (car pt) 2 3) "\n")
	    txty (strcat "N=" (rtos (cadr pt) 2 3) "\n")
	    txtz (strcat "L=" (rtos (caddr pt) 2 3) "\n")
      )
      (command "_.ucs" "_v"
	       "leader" "_non" (trans pt 0 1) "_non" (trans pt1 0 1) "Annotation" txtx txty txtz ""
	       "_.ucs""_p")
    )
  )
  (princ)
)&lt;/LI-CODE&gt;
&lt;P&gt;Hope this helps, &lt;BR /&gt;Henrique&lt;/P&gt;</description>
    <pubDate>Tue, 01 Jun 2021 08:39:59 GMT</pubDate>
    <dc:creator>hmsilva</dc:creator>
    <dc:date>2021-06-01T08:39:59Z</dc:date>
    <item>
      <title>Ask for lisp for labelling coordinates in rotated view</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354166#M59865</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925226i059F67258841AB5C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 01:27:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354166#M59865</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-01T01:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Ask for lisp for labelling coordinates in rotated view</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354170#M59866</link>
      <description>&lt;P&gt;Please help! How to label the world coordinates in rotated view plan with flat text style ?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 01:30:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354170#M59866</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-01T01:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Ask for lisp for labelling coordinates in rotated view</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354212#M59867</link>
      <description>Set PLAN to "current ucs" then add your "flat labels" is one way to do it. Try it.</description>
      <pubDate>Tue, 01 Jun 2021 02:04:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354212#M59867</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2021-06-01T02:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Ask for lisp for labelling coordinates in rotated view</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354262#M59868</link>
      <description>&lt;P&gt;I did but the labelled coordinates were not world coordinates, I need to edit manually. Is there other lisp to fix it ?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 02:39:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354262#M59868</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-01T02:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Ask for lisp for labelling coordinates in rotated view</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354845#M59869</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/925226i059F67258841AB5C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This?&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:demo ( / pt pt1 txtx txty txtz)
  (if (and (setq pt (getpoint "\nSpecify a point to labell: "))
	   (setq pt1 (getpoint pt "\nSpecify text starting point: "))
      )
    (progn
      (setq pt	 (trans pt 1 0)
	    pt1  (trans pt1 1 0)
	    txtx (strcat "E=" (rtos (car pt) 2 3) "\n")
	    txty (strcat "N=" (rtos (cadr pt) 2 3) "\n")
	    txtz (strcat "L=" (rtos (caddr pt) 2 3) "\n")
      )
      (command "_.ucs" "_v"
	       "leader" "_non" (trans pt 0 1) "_non" (trans pt1 0 1) "Annotation" txtx txty txtz ""
	       "_.ucs""_p")
    )
  )
  (princ)
)&lt;/LI-CODE&gt;
&lt;P&gt;Hope this helps, &lt;BR /&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 08:39:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10354845#M59869</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2021-06-01T08:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Ask for lisp for labelling coordinates in rotated view</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10355703#M59870</link>
      <description>&lt;P&gt;Wow great! It works, really really thanks!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 14:50:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10355703#M59870</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-01T14:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Ask for lisp for labelling coordinates in rotated view</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10355705#M59871</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Wow great! It works, really really thanks!!&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You're welcome,&amp;nbsp;@Anonymous&amp;nbsp;&lt;BR /&gt;Glad I could help&lt;BR /&gt;&lt;BR /&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 14:52:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ask-for-lisp-for-labelling-coordinates-in-rotated-view/m-p/10355705#M59871</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2021-06-01T14:52:05Z</dc:date>
    </item>
  </channel>
</rss>

