<?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: Copying Linked Objects in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6893677#M8716</link>
    <description>&lt;P&gt;Its possible I'm cheating &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; My objects (of different types) are separate and independent entities, but need to maintain "connectivity". Each object stores pointers to its connected objects, but I store the pointer differently depending on the filer type and the 'owner' direction. (For a deep clone filer I use hard ownership pointers, for a wblock clone hard pointers, otherwise soft pointers).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This allows me to copy one object and have its mates automatically included in the copy and the ids remapped correctly, to maintain my connectivity in the copied group of objects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I see that the deep cloning doesn't occur until after the 'drag' part of the copy, which would make it difficult to do what I want without, as you say, manually adding my linked objects to the selection set. It just seems odd that Autocad has a nice method for linking deep cloned objects that works really well for me, but there is no way to leverage that system to draw a 'proper' drag clone...&lt;/P&gt;</description>
    <pubDate>Tue, 21 Feb 2017 19:44:03 GMT</pubDate>
    <dc:creator>Kyudos</dc:creator>
    <dc:date>2017-02-21T19:44:03Z</dc:date>
    <item>
      <title>Copying Linked Objects</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6889423#M8712</link>
      <description>&lt;P&gt;If I move or copy a linked objects (i.e., one that 'Hard-points' to another, or several others) is there an easy way to show what will actually happen via the move/copy marquee clone ghost thingy?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, Line A owns Point B and Point C, I select A and COPY. The drag clone shows a line(A), how do I get it to also show the points? (B and C) Should I call my point clone functions from my line clone function for instance?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 04:08:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6889423#M8712</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2017-02-20T04:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Linked Objects</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6890829#M8713</link>
      <description>You can add B and C in AcEdSSGetFilter::endSSGet.</description>
      <pubDate>Mon, 20 Feb 2017 16:52:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6890829#M8713</guid>
      <dc:creator>BerndCuder8196</dc:creator>
      <dc:date>2017-02-20T16:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Linked Objects</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6891274#M8714</link>
      <description>&lt;P&gt;Well, yeah I could manually change the selection set. But given that the Deep Clone process has the concept of linked objects - I copy A - B and C are also copied - it would seem like AutoCAD would have a built in way to show this during the copy process. Manually constructing the selection set (i.e. following the links myself) means I wouldn't be taking advantage of the existing 'linking' system.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 20:02:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6891274#M8714</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2017-02-20T20:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Linked Objects</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6893624#M8715</link>
      <description>I think there is no mechanism to copy entity A in the drawing and automatically copy B and C when A has an hardpointer to these. These works in copypaste well, also copypaste in the same drawing.&lt;BR /&gt;I think this is because hardpointer are designed for hardpointing layers, styles, not between entity's.&lt;BR /&gt;But if I remember right, if you select A and add C and D manualy to the selection set, AutoCAD check this and make an Id translation.&lt;BR /&gt;So, if you only copy A, the copy has an hardpointer to B and C, like the origin. But if you copy A, B and C, the copy of A has an hardpointer to the copy's of B and C (idMapping). But I'm not sure, I have tested this in my app only between two entities they have an softpointer together.</description>
      <pubDate>Tue, 21 Feb 2017 19:25:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6893624#M8715</guid>
      <dc:creator>BerndCuder8196</dc:creator>
      <dc:date>2017-02-21T19:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Linked Objects</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6893677#M8716</link>
      <description>&lt;P&gt;Its possible I'm cheating &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; My objects (of different types) are separate and independent entities, but need to maintain "connectivity". Each object stores pointers to its connected objects, but I store the pointer differently depending on the filer type and the 'owner' direction. (For a deep clone filer I use hard ownership pointers, for a wblock clone hard pointers, otherwise soft pointers).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This allows me to copy one object and have its mates automatically included in the copy and the ids remapped correctly, to maintain my connectivity in the copied group of objects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I see that the deep cloning doesn't occur until after the 'drag' part of the copy, which would make it difficult to do what I want without, as you say, manually adding my linked objects to the selection set. It just seems odd that Autocad has a nice method for linking deep cloned objects that works really well for me, but there is no way to leverage that system to draw a 'proper' drag clone...&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 19:44:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/copying-linked-objects/m-p/6893677#M8716</guid>
      <dc:creator>Kyudos</dc:creator>
      <dc:date>2017-02-21T19:44:03Z</dc:date>
    </item>
  </channel>
</rss>

