<?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: 3d Polyline with zero elevation - how to copy from z's of the blocks that have same x, y as the vertices? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/3d-polyline-with-zero-elevation-how-to-copy-from-z-s-of-the/m-p/11553579#M47590</link>
    <description>&lt;P&gt;By hands you can browse the points of your object pleased to the Properties palette and change with your keyboard, the value of Z.&lt;/P&gt;
&lt;P&gt;A manual solution for now.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tramber_0-1668520172397.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1139911i95496EA357ACDAB1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tramber_0-1668520172397.png" alt="tramber_0-1668520172397.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Nov 2022 13:49:36 GMT</pubDate>
    <dc:creator>tramber</dc:creator>
    <dc:date>2022-11-15T13:49:36Z</dc:date>
    <item>
      <title>3d Polyline with zero elevation - how to copy from z's of the blocks that have same x, y as the vertices?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/3d-polyline-with-zero-elevation-how-to-copy-from-z-s-of-the/m-p/11553065#M47589</link>
      <description>&lt;P&gt;Hey!&lt;/P&gt;&lt;P&gt;I have a little situation.&lt;/P&gt;&lt;P&gt;I have a 3d Polyline and the vertices have the elevation 0 (zero).&lt;BR /&gt;At the same, in exact (each) position of every vertex, I have a block having the correct elevation.&lt;/P&gt;&lt;P&gt;How could I copy the elevation from the blocks to the vertices of the polylines?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 09:44:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/3d-polyline-with-zero-elevation-how-to-copy-from-z-s-of-the/m-p/11553065#M47589</guid>
      <dc:creator>pesctx</dc:creator>
      <dc:date>2022-11-15T09:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Polyline with zero elevation - how to copy from z's of the blocks that have same x, y as the vertices?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/3d-polyline-with-zero-elevation-how-to-copy-from-z-s-of-the/m-p/11553579#M47590</link>
      <description>&lt;P&gt;By hands you can browse the points of your object pleased to the Properties palette and change with your keyboard, the value of Z.&lt;/P&gt;
&lt;P&gt;A manual solution for now.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tramber_0-1668520172397.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1139911i95496EA357ACDAB1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tramber_0-1668520172397.png" alt="tramber_0-1668520172397.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 13:49:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/3d-polyline-with-zero-elevation-how-to-copy-from-z-s-of-the/m-p/11553579#M47590</guid>
      <dc:creator>tramber</dc:creator>
      <dc:date>2022-11-15T13:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Polyline with zero elevation - how to copy from z's of the blocks that have same x, y as the vertices?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/3d-polyline-with-zero-elevation-how-to-copy-from-z-s-of-the/m-p/11553973#M47591</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/EM&gt; there are not other things with Insertion points to confuse the issue, &lt;EM&gt;&lt;STRONG&gt;and if&lt;/STRONG&gt;&lt;/EM&gt; you are looking at the 3DPolyline flat in its plane with the Blocks appearing to be at the vertices in XY terms, &lt;EM&gt;&lt;STRONG&gt;and if&lt;/STRONG&gt;&lt;/EM&gt; there's a Block at every vertex, this [in simplest terms] seems to work:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun C:TEST (/ 3dpl n)
  (setq
    3dpl (car (entsel "\nSelect 3D Polyline: "))
    n -1
  )
  (command "_.pedit" 3dpl "_edit")
  (repeat (fix (vlax-curve-getEndParam 3dpl))
    (command
      "_move" (osnap (vlax-curve-getPointAtParam 3dpl (setq n (1+ n))) "_ins")
      "_next"
    )
  )
  (command "_exit" "")
  (prin1)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 15 Nov 2022 16:12:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/3d-polyline-with-zero-elevation-how-to-copy-from-z-s-of-the/m-p/11553973#M47591</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-11-15T16:12:44Z</dc:date>
    </item>
  </channel>
</rss>

