<?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 how to modify vertex of AcDb3dPolyline which is not in database in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/how-to-modify-vertex-of-acdb3dpolyline-which-is-not-in-database/m-p/12540414#M1105</link>
    <description>&lt;P&gt;the&amp;nbsp;pPolying is&amp;nbsp;AcDb3dPolyline which&amp;nbsp;is not in database.i want to modify its vertex like the follow picture,but it failed,return eNoDatabase error.i want to know how to modify the vertex.&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="475867377_0-1707113762368.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1322167i084BF3E3665A6928/image-size/medium?v=v2&amp;amp;px=400" role="button" title="475867377_0-1707113762368.png" alt="475867377_0-1707113762368.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Feb 2024 06:18:25 GMT</pubDate>
    <dc:creator>475867377</dc:creator>
    <dc:date>2024-02-05T06:18:25Z</dc:date>
    <item>
      <title>how to modify vertex of AcDb3dPolyline which is not in database</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/how-to-modify-vertex-of-acdb3dpolyline-which-is-not-in-database/m-p/12540414#M1105</link>
      <description>&lt;P&gt;the&amp;nbsp;pPolying is&amp;nbsp;AcDb3dPolyline which&amp;nbsp;is not in database.i want to modify its vertex like the follow picture,but it failed,return eNoDatabase error.i want to know how to modify the vertex.&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="475867377_0-1707113762368.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1322167i084BF3E3665A6928/image-size/medium?v=v2&amp;amp;px=400" role="button" title="475867377_0-1707113762368.png" alt="475867377_0-1707113762368.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2024 06:18:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/how-to-modify-vertex-of-acdb3dpolyline-which-is-not-in-database/m-p/12540414#M1105</guid>
      <dc:creator>475867377</dc:creator>
      <dc:date>2024-02-05T06:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to modify vertex of AcDb3dPolyline which is not in database</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/how-to-modify-vertex-of-acdb3dpolyline-which-is-not-in-database/m-p/12555404#M1106</link>
      <description>&lt;P&gt;Your are using the iterator wrong. Try this:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;	AcDbObjectIterator *it = pPolying-&amp;gt;vertexIterator();
	if (it)  {
		for (it-&amp;gt;start(); !it-&amp;gt;done(); it-&amp;gt;step())	{
			AcDb3dPolylineVertex* pVertex = AcDb3dPolylineVertex::cast(it-&amp;gt;entity());
			if (pVertex)
				es = pVertex-&amp;gt;setPosition(pt);
				// Don't delete pVertex!
		}
		delete it; // But delete the iterator when you are done with it
	}
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 15:51:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/how-to-modify-vertex-of-acdb3dpolyline-which-is-not-in-database/m-p/12555404#M1106</guid>
      <dc:creator>tbrammer</dc:creator>
      <dc:date>2024-02-12T15:51:22Z</dc:date>
    </item>
  </channel>
</rss>

