
Mon, 10/11/2021 - 13:00
Forums:
Hi,
I followed the example in the tutorial, but it does not work correctly. What should I do?
The following is part of my code:
class CustomInteractiveStyle : public vtkInteractorStyleTrackballCamera{
......
void OnLeftButtonDown() override{
vtkInteractorStyleTrackballCamera::OnLeftButtonDown();
picker->SetSelectionMode(SM_Face);
Standard_Integer pickPosition[2]{0};
this->GetInteractor()->GetEventPosition(pickPosition);
picker->Pick(pickPosition[0],pickPosition[1],0);
vtkSmartPointer<vtkActorCollection> actorCollection = picker->GetPickedActors();
......
}
......
}
I have set the Render for picker, actorCollection->GetNumberOfItems() is always 0.Can you help me?
Thanks!
Fri, 05/13/2022 - 05:26
Hi,Have you solved the problem yet?
Tue, 10/25/2022 - 11:43
same problem here!
Tue, 06/20/2023 - 17:46
I have the same problem, have you found a solution?
Or anyone have an idea for a workaround?
Sun, 07/07/2024 - 09:27
I have the same problem, and no matter what selectionMode i set, the number is always 0.