set/get/updateWidgetPose implemented, cloudNormals with color

This commit is contained in:
ozantonkal
2013-07-08 18:56:13 +02:00
parent e76023be96
commit 658e4c5e97
7 changed files with 102 additions and 9 deletions

View File

@@ -88,3 +88,18 @@ bool temp_viz::Viz3d::removeWidget(const String &id)
{
return impl_->removeWidget(id);
}
bool temp_viz::Viz3d::setWidgetPose(const String &id, const Affine3f &pose)
{
return impl_->setWidgetPose(id, pose);
}
bool temp_viz::Viz3d::updateWidgetPose(const String &id, const Affine3f &pose)
{
return impl_->updateWidgetPose(id, pose);
}
temp_viz::Affine3f temp_viz::Viz3d::getWidgetPose(const String &id) const
{
return impl_->getWidgetPose(id);
}