<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Mar 4, 2015 at 8:29 AM, DVigneault <span dir="ltr"><<a href="mailto:davis.vigneault@gmail.com" target="_blank">davis.vigneault@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
vtkProp3DCollection* props =<br>
static_cast<vtkCellPicker*>(this->InteractionPicker)->GetProp3Ds();<br>
static_cast<vtkProp3DCollection*>(props)->IsItemPresent(this->IntendedActor);<br>
<br>
...but I then get an "invalid use of incomplete type" error on the last<br>
line.  How can I go about ensuring that I've picked the right actor?<br></blockquote><div><br></div><div>If the compiler says "invalid use of incomplete type", that means you forgot to</div><div>include the header:</div><div><br></div><div>#include <vtkProp3DCollection.h></div><div><br></div><div> - David</div><div><br></div><div> </div></div></div></div>