Skip to content
Snippets Groups Projects
Commit 0614b63d authored by Mirko Wächter's avatar Mirko Wächter
Browse files

removed unnecessary floor plane in IMU obs

made function use const ref instead of copy
parent 5122bc2e
No related branches found
No related tags found
No related merge requests found
...@@ -110,11 +110,11 @@ void InertialMeasurementUnitObserver::reportSensorValues(const std::string& devi ...@@ -110,11 +110,11 @@ void InertialMeasurementUnitObserver::reportSensorValues(const std::string& devi
PosePtr posePtr = new Pose(orientationQuaternion->toEigen(), zero); PosePtr posePtr = new Pose(orientationQuaternion->toEigen(), zero);
debugDrawerPrx->setPoseVisu("IMU", "orientation", posePtr); debugDrawerPrx->setPoseVisu("IMU", "orientation", posePtr);
debugDrawerPrx->setBoxDebugLayerVisu("floor", new Pose(), new Vector3(5000, 5000, 1), DrawColor {0.7f, 0.7f, 0.7f, 1.0f}); // debugDrawerPrx->setBoxDebugLayerVisu("floor", new Pose(), new Vector3(5000, 5000, 1), DrawColor {0.7f, 0.7f, 0.7f, 1.0f});
} }
} }
void InertialMeasurementUnitObserver::offerValue(std::string device, std::string fieldName, Vector3Ptr vec) void InertialMeasurementUnitObserver::offerValue(const std::string& device, const std::string& fieldName, const Vector3Ptr& vec)
{ {
offerOrUpdateDataField(device, fieldName, vec, fieldName + " values"); offerOrUpdateDataField(device, fieldName, vec, fieldName + " values");
offerOrUpdateDataField(device, fieldName + "_x", vec->x, fieldName + "_x value"); offerOrUpdateDataField(device, fieldName + "_x", vec->x, fieldName + "_x value");
......
...@@ -87,7 +87,7 @@ namespace armarx ...@@ -87,7 +87,7 @@ namespace armarx
DebugDrawerInterfacePrx debugDrawerPrx; DebugDrawerInterfacePrx debugDrawerPrx;
void offerValue(std::string device, std::string fieldName, Vector3Ptr vec); void offerValue(const std::string& device, const std::string& fieldName, const Vector3Ptr& vec);
}; };
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment