refactor: unify Object signal system, update property connections, and integrate Eigen3 into Root module
This commit is contained in:
@@ -222,7 +222,7 @@ public:
|
||||
|
||||
m_Prop3D->RegisterDisplayProperty(p);
|
||||
Vtk::Prop3D *prop3d = m_Prop3D;
|
||||
uLib::Object::connect(p, &uLib::PropertyBase::Updated,
|
||||
uLib::Object::connect(p, &uLib::Object::Updated,
|
||||
[prop3d]() { prop3d->Update(); });
|
||||
}
|
||||
}
|
||||
@@ -236,7 +236,7 @@ public:
|
||||
t.labels(), t.units() ? t.units() : "", GetCurrentGroup());
|
||||
m_Prop3D->RegisterDisplayProperty(p);
|
||||
Vtk::Prop3D *prop3d = m_Prop3D;
|
||||
uLib::Object::connect(p, &uLib::PropertyBase::Updated,
|
||||
uLib::Object::connect(p, &uLib::Object::Updated,
|
||||
[prop3d]() { prop3d->Update(); });
|
||||
}
|
||||
}
|
||||
@@ -295,7 +295,7 @@ public:
|
||||
if (m_Prop3D) {
|
||||
m_Prop3D->RegisterDisplayProperty(&p);
|
||||
Vtk::Prop3D *prop3d = m_Prop3D;
|
||||
uLib::Object::connect(&p, &uLib::PropertyBase::Updated,
|
||||
uLib::Object::connect(&p, &uLib::Object::Updated,
|
||||
[prop3d]() { prop3d->Update(); });
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user