You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to select points with the mouse in SceneWidget, but pick_interactor = std::make_shared<PickPointsInteractor>(*scene_widget, *camera );always wrong.This is my graduation project,help please!
#7247
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
class TunnelAppWindow : public Window {
public:
TunnelAppWindow() : Window("windowsssss", 1600, 900) {
InitScene();
panel = std::make_shared();
const int panel_width = 500;
scene->SetFrame(gui::Rect(panel_width, 0, this->GetSize().width - panel_width, this->GetSize().height));
panel->SetFrame(gui::Rect(0, 0, panel_width, this->GetSize().height));
private:
void InitScene() {
scene = std::make_sharedgui::SceneWidget();
scene->SetScene(std::make_sharedrendering::Open3DScene(GetRenderer()));
}
Beta Was this translation helpful? Give feedback.
All reactions