<?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: When 2d point equal 3d point? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202394#M45005</link>
    <description>&lt;P&gt;I think that where the point definition is required and a 2D point is accepted, then it is implicitly assumed that the omitted Z is 0.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While we don't see into the ssget definition.... it could be similar as&lt;/P&gt;
&lt;P&gt;(entmakex (list (cons 0 "CIRCLE") (cons 10 '(0 0)) (cons 40 4))))&lt;/P&gt;</description>
    <pubDate>Mon, 30 May 2022 15:10:51 GMT</pubDate>
    <dc:creator>ВeekeeCZ</dc:creator>
    <dc:date>2022-05-30T15:10:51Z</dc:date>
    <item>
      <title>When 2d point equal 3d point?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202214#M45002</link>
      <description>&lt;P&gt;I have a code in which first i get lwpolyline from drawing&lt;/P&gt;&lt;P&gt;(setq pl (entget (car (entsel)))&lt;/P&gt;&lt;P&gt;then i get endpoint of this lwpolyline&lt;/P&gt;&lt;P&gt;(setq plbbb (cdr (assoc 10 (reverse pl))))&lt;/P&gt;&lt;P&gt;then i have in my drawing block with insertion point at the end of my polyline, and i want to obtain a selection set with this block only&lt;/P&gt;&lt;P&gt;(setq ssblock (ssget "_X" (list&amp;nbsp; (cons 10 plbbb) (cons 0 "INSERT"))))&lt;/P&gt;&lt;P&gt;The question is - why this ssget function is worked and gives me a selection set with this block although end point of lwpolyline is 2d (without z) and insertion point of block is 3d (with z = 0). ?&lt;/P&gt;&lt;P&gt;If i want compare endpoint of lwpolyline and insertion point of block, the =, eq and equal returns nil&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 12:17:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202214#M45002</guid>
      <dc:creator>Kirillspec</dc:creator>
      <dc:date>2022-05-30T12:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: When 2d point equal 3d point?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202294#M45003</link>
      <description>&lt;P&gt;A&amp;nbsp;&lt;SPAN&gt;lwpolyline has an Elevation value in properties. It's constant for every vertex&amp;nbsp;lwpolyline unlike a 3dpolyline but it has Elevation.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 12:51:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202294#M45003</guid>
      <dc:creator>TomBeauford</dc:creator>
      <dc:date>2022-05-30T12:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: When 2d point equal 3d point?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202336#M45004</link>
      <description>&lt;P&gt;Yes, but the question is why filter&amp;nbsp;&lt;SPAN&gt;(cons 10 plbbb) where plbbb has only x and y coordinates works for block with insertion point which has x,y and z coordinates?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 13:04:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202336#M45004</guid>
      <dc:creator>Kirillspec</dc:creator>
      <dc:date>2022-05-30T13:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: When 2d point equal 3d point?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202394#M45005</link>
      <description>&lt;P&gt;I think that where the point definition is required and a 2D point is accepted, then it is implicitly assumed that the omitted Z is 0.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While we don't see into the ssget definition.... it could be similar as&lt;/P&gt;
&lt;P&gt;(entmakex (list (cons 0 "CIRCLE") (cons 10 '(0 0)) (cons 40 4))))&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 15:10:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202394#M45005</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-05-30T15:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: When 2d point equal 3d point?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202662#M45006</link>
      <description>&lt;P&gt;OK, Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 15:07:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11202662#M45006</guid>
      <dc:creator>Kirillspec</dc:creator>
      <dc:date>2022-05-30T15:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: When 2d point equal 3d point?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11206613#M45007</link>
      <description>&lt;P&gt;If you want 1 block dont worry about "X", (ssget pt)&amp;nbsp; I have found reliable&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 03:48:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/when-2d-point-equal-3d-point/m-p/11206613#M45007</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2022-06-01T03:48:47Z</dc:date>
    </item>
  </channel>
</rss>

