<?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: SET POINT UCS COORDINATE in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9558077#M73881</link>
    <description>&lt;P&gt;"M" - UCS "Move" source origin to destination new point origin...&lt;/P&gt;&lt;P&gt;Of course I assumed that OP's initial UCS was actually WCS... I haven't considered in my code 3D orientation - random UCS...&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jun 2020 15:49:25 GMT</pubDate>
    <dc:creator>marko_ribar</dc:creator>
    <dc:date>2020-06-03T15:49:25Z</dc:date>
    <item>
      <title>SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9556557#M73876</link>
      <description>&lt;P&gt;Hi all Please Help me write Lisp&lt;/P&gt;&lt;DIV class="text-wrap tlid-copy-target"&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;I want to click a point to enter the UCS value.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;Example : Original Coordinate =&amp;nbsp;X = 30.5678 Y = 12.0456 Z = 0.0000&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;I want to set a new =&amp;nbsp;X = 0.0000 Y = 5000.0000 Z = 0.0000&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="result-shield-container tlid-copy-target"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;Thanks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="tlid-result-transliteration-container result-transliteration-container transliteration-container"&gt;&lt;DIV class="tlid-transliteration-content transliteration-content full"&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled-Project.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/779048i3D896533FC005F60/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled-Project.gif" alt="Untitled-Project.gif" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 03 Jun 2020 04:09:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9556557#M73876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-03T04:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9556625#M73877</link>
      <description>&lt;LI-CODE lang="general"&gt;(defun c:oldcoord2newcoord ( / ptw ow vw )
  (setq ptw (trans (getpoint "\nClick on point you want to set coordinates of or specify old coordinates : ") 1 0))
  (setq ow (trans '(0.0 0.0 0.0) 1 0))
  (setq vw (mapcar '- ptw ow))
  (setq ptw (trans (getpoint "\nSpecify new coordinates you wish for clicked point : ") 1 0))
  (vl-cmdf "_.UCS" "_W")
  (vl-cmdf "_.UCS" "_M" "_non" (mapcar '- vw ptw))
  (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;HTH., M.R.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 05:12:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9556625#M73877</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2020-06-03T05:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9556681#M73878</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The result is not correct.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 05:58:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9556681#M73878</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-03T05:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9557761#M73879</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The result is not correct.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The result is correct... I checked it on my AutoCAD...&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 13:58:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9557761#M73879</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2020-06-03T13:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9558014#M73880</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:
&lt;P&gt;The result is not correct.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That is never enough information.&amp;nbsp; What is not correct about it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But in the meantime....&amp;nbsp; &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;, My UCS command does not show any _&lt;STRONG&gt;M&lt;/STRONG&gt; option.&amp;nbsp; [I'm in Acad2019, but Help for 2021 doesn't describe one, either.]&amp;nbsp; What is intended?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 15:30:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9558014#M73880</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-06-03T15:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9558077#M73881</link>
      <description>&lt;P&gt;"M" - UCS "Move" source origin to destination new point origin...&lt;/P&gt;&lt;P&gt;Of course I assumed that OP's initial UCS was actually WCS... I haven't considered in my code 3D orientation - random UCS...&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 15:49:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9558077#M73881</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2020-06-03T15:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9559073#M73882</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi friend&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;I tried it&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;When I type 500 but the result is X = -326.6986 Y = -364.4778 Z = 0.000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;It should be X = 0.000 Y = 500.000 Z = 0.000&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled-Project.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/779497iBB518EA7060B5250/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled-Project.gif" alt="Untitled-Project.gif" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 00:11:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9559073#M73882</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-04T00:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9559132#M73883</link>
      <description>&lt;P&gt;When asked for the new co-ords you enter 0,5000,0 and it works for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Marko maybe ask X Y Z rather than a point.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For me using multi getvals.lsp&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(if (not AH:getvalsm)(load "Multi Getvals.lsp"))
(setq ans (AH:getvalsm (list "New values " "X  " 8 7 "0.0" "Y  " 8 7 "0.0" "Z  " 8 7 "0.0" )))
(setq pt (list (atof (nth 0 ans))(atof (nth 1 ans ))(atof (nth 2 ans))))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(setq ptw (trans pt 1 0))&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screenshot210.png" style="width: 217px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/779511i490DDE7DB19A82A7/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot210.png" alt="screenshot210.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 01:07:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9559132#M73883</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-06-04T01:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9559186#M73884</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All right!&lt;BR /&gt;Can I continue to the next point?&lt;BR /&gt;And I always want the X&amp;amp;Z value to be 0&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 01:54:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9559186#M73884</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-04T01:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9559888#M73885</link>
      <description>&lt;P&gt;Welcome to Autodesk Community @Anonymous !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Great to see you here on LISP forum.&lt;/P&gt;
&lt;P&gt;Don't hesitate to accept a solution if find one.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 10:27:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9559888#M73885</guid>
      <dc:creator>lena.talkhina</dc:creator>
      <dc:date>2020-06-04T10:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9560421#M73886</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All right!&lt;BR /&gt;Can I continue to the next point?&lt;BR /&gt;And I always want the X&amp;amp;Z value to be 0&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I don't know what you are after, but as Alan explained you have to specify all 3 coordinates separated with "," when asked (commas - without quotes)... If you want to continue changing UCS from previous settings and continously set new coordinates, bear in mind that old ones will change... Here is my code slightly modified for working in random UCS, so with this code you may continue with setting coordinates all until you set last point you pick...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:oldcoord2newcoord ( / pt v )
  (setq pt (getpoint "\nClick on point you want to set coordinates of or specify old coordinates : "))
  (setq v pt)
  (setq pt (getpoint "\nSpecify new coordinates you wish for clicked point : "))
  (vl-cmdf "_.UCS" "_non" (mapcar '- v pt) "")
  (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that now is all fine and satisfies your requests... I changed "M" option as also with my AutoCAD it's not specifed as Kent noticed (it was coded from my experience of working with UCS, not from actuall options provided within command)...&lt;/P&gt;&lt;P&gt;Still I don't quite know why do you need this LISP (if you specify new coordinates, you can as well type them in text you create directly without changing any setting of UCS and this mod. covers only last setting of point coords - it's only better because of general approach that assumes that user works in some random UCS instead of initial AutoCAD default WCS)...&lt;/P&gt;&lt;P&gt;I don't know what else you requested more, I suppose this was correct answer so that you can mark it as soultion...&lt;/P&gt;&lt;P&gt;Am I wrong and missing something more important? You can either way alter my solution to your specific needs to input only single coordinate, but then it won't cover situations that may be more general (all 3 specifications of point data)... We need more info about things explaining what exactly you want to achieve. Then I suppose your input will make some sense - specifications of just Y coordinate... Anyway I leave both explanations and altering provided solution to you...&lt;/P&gt;&lt;P&gt;Stay well and take care.&lt;/P&gt;&lt;P&gt;Regards, M.R.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 14:01:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9560421#M73886</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2020-06-04T14:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9561876#M73887</link>
      <description>&lt;P&gt;Marko sometimes in CIVIL work will change the ucs from like 67854322.123, 123456.789 to 0,0 and rotate so just makes a bit easier to draft doing PLAN after setting UCS. Makes the text square to orientation etc but the real world co-ords are still there if required. Often for multiple layouts multi ucs to reorient plan view angle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is interesting not asking for second point or rotation as well.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 02:25:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9561876#M73887</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-06-05T02:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9562280#M73888</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi Friend&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(defun c:oldcoord2newcoord ( / pt v )
  (setq pt (getpoint "\nClick on point you want to set coordinates of or specify old coordinates : "))
  (setq v pt)
  (setq pt (getpoint "\nSpecify new coordinates you wish for clicked point : "))
  (vl-cmdf "_.UCS" "_non" (mapcar '- v pt) "")
  (princ)
)&lt;/PRE&gt;&lt;P&gt;When I enter the value 0,5000,0&lt;BR /&gt;And I just want to enter the value 5000 only&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry,&amp;nbsp;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;I'm not good at English&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 08:48:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9562280#M73888</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-05T08:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9562339#M73889</link>
      <description>&lt;P&gt;I don't know what do you need this for, but here you are...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:oldcoord2newcoord ( / pt v Ycoord )
  (setq pt (getpoint "\nClick on point you want to set coordinates of or specify old coordinates : "))
  (setq v pt)
  (setq Ycoord (getreal "\nSpecify Y coordinate ( X = 0.0 ; Z = 0.0 ) : "))
  (setq pt (list 0.0 Ycoord 0.0))
  (vl-cmdf "_.UCS" "_non" (mapcar '- v pt) "")
  (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;HTH., M.R.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 09:22:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9562339#M73889</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2020-06-05T09:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: SET POINT UCS COORDINATE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9562358#M73890</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;Like this&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 09:25:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/set-point-ucs-coordinate/m-p/9562358#M73890</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-05T09:25:49Z</dc:date>
    </item>
  </channel>
</rss>

