<?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 Betreff: How can I get the list of points? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023484#M178515</link>
    <description>&lt;P&gt;Yes yo got right. According to AutoCAD definition they are not points. The plus-symbols are in reality points on the field, which has been measured.&lt;/P&gt;</description>
    <pubDate>Thu, 24 May 2018 11:42:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-05-24T11:42:39Z</dc:date>
    <item>
      <title>How can I get the list of points?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023370#M178512</link>
      <description>&lt;P&gt;I have a dwg file in which there are aparanetly some points (see attachment). But&amp;nbsp;when I want to get the coordinates of this points using the following lisp, the answer comes that no object is selected.&lt;/P&gt;&lt;PRE&gt;(defun c:lixt ( / i s )
    (if (setq s (ssget '((0 . "POINT"))))
        (repeat (setq i (sslength s))
            (princ
                (apply 'strcat
                    (mapcar 'strcat '("\n\tX=\t" "\tY=\t" "\tZ=\t")
                        (mapcar 'rtos (cdr (assoc 10 (entget (ssname s (setq i (1- i)))))))
                    )
                )
            )
        )
    )
    (princ)
)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate any recommandation.&lt;/P&gt;</description>
      <pubDate>Thu, 24 May 2018 10:51:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023370#M178512</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-24T10:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get the list of points?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023384#M178513</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;as seen from below image and as i understand that you want to find coordinates ( x,y,z ) for those points ... you can easily get coordinates by &lt;STRONG&gt;EATTEXT&lt;/STRONG&gt; command . just be patient and go through 8 / 8&amp;nbsp; pages data extraction and select proper settings in every dialog to get what you see below .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nhy.png" style="width: 360px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/504237i798E1BE17422B45B/image-dimensions/360x194?v=v2" width="360" height="194" role="button" title="nhy.png" alt="nhy.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hhrt.png" style="width: 349px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/504238i2B21449D91B73543/image-dimensions/349x173?v=v2" width="349" height="173" role="button" title="hhrt.png" alt="hhrt.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it's help ... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 May 2018 11:06:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023384#M178513</guid>
      <dc:creator>imadHabash</dc:creator>
      <dc:date>2018-05-24T11:06:52Z</dc:date>
    </item>
    <item>
      <title>Betreff: How can I get the list of points?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023394#M178514</link>
      <description>&lt;P&gt;In your drawing is only ONE Point.&lt;/P&gt;&lt;P&gt;What you want to get are (I guess) the insertion points of block references.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cadder&lt;/P&gt;</description>
      <pubDate>Thu, 24 May 2018 11:03:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023394#M178514</guid>
      <dc:creator>j.palmeL29YX</dc:creator>
      <dc:date>2018-05-24T11:03:06Z</dc:date>
    </item>
    <item>
      <title>Betreff: How can I get the list of points?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023484#M178515</link>
      <description>&lt;P&gt;Yes yo got right. According to AutoCAD definition they are not points. The plus-symbols are in reality points on the field, which has been measured.&lt;/P&gt;</description>
      <pubDate>Thu, 24 May 2018 11:42:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-can-i-get-the-list-of-points/m-p/8023484#M178515</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-24T11:42:39Z</dc:date>
    </item>
  </channel>
</rss>

