Are you are using the vesKiwiViewerApp class?  And you are using vesKiwiViewerApp::loadDataset(std::string filename) to load the skull dataset?  If that's the case, then the problem you're having is that the loadDataset() method calls this->resetScene() before loading the new data, so each time you call it, it replaces the current scene.<br>

<br>What I recommend is that you subclass vesKiwiViewerApp so that you have your own custom app class that can implement your app's behavior.  Then write some methods like this:<br><br>class MyApp : public vesKiwiViewerApp<br>

{<br>public:<br><br>void loadScene()<br>{<br>  vtkSmartPointer<vtkDataSet> skull = this->getSkull();<br>  vtkSmartPointer<vtkDataSet> pin = this->getPin();<br><br>  this->addRepresentationsForDataSet(skull);<br>

  this->addRepresentationsForDataSet(pin);<br>}<br><br>vtkSmartPointer<vtkDataSet> getSkull()<br>{<br>  std::string filename = "/path/to/skull.vtp";<br>  vesKiwiDataLoader loader;<br>  return this->Internal->loader.loadDataset(filename);<br>

}<br><br>vtkSmartPointer<vtkDataSet> getPin()<br>{<br>  std::string filename = "/path/to/pin.vtp";<br>  vesKiwiDataLoader loader;<br>  return this->Internal->loader.loadDataset(filename);<br>}<br><br>

};<br><br><br><div class="gmail_quote">On Wed, Nov 14, 2012 at 8:52 AM, William Grand <span dir="ltr"><<a href="mailto:wgrand@grandinteractive.com" target="_blank">wgrand@grandinteractive.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap:break-word">Hi,<div><br></div><div>I have a model of a skull, but I want the ability to add 3D pins to it.  </div><div><br></div><div>How would I add my 3D pin to the scene?  Can someone point me the right direction?</div>

<div>I'm not sure how to add objects without swapping out the skull model.</div><div><br></div><div>Thanks,</div><div>William</div><div><br></div><div><br><div>
<div><div><font color="#fd4233">_________________________________</font></div><span class="HOEnZb"><font color="#888888"><div><b>William Grand</b> | Founder & CEO</div><div>Grand Interactive, Boston</div><div><span style="color:rgb(95,95,95)"><a href="tel:617.652-0545" value="+16176520545" target="_blank">617.652-0545</a> | <a href="http://www.grandinteractive.com" target="_blank">www.grandinteractive.com</a></span></div>

</font></span></div>

</div>
<br></div></div><br>_______________________________________________<br>
Ves mailing list<br>
<a href="mailto:Ves@public.kitware.com">Ves@public.kitware.com</a><br>
<a href="http://public.kitware.com/cgi-bin/mailman/listinfo/ves" target="_blank">http://public.kitware.com/cgi-bin/mailman/listinfo/ves</a><br>
<br></blockquote></div><br>