Skip to content
Snippets Groups Projects
Commit 54f3372f authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add removeArrow()

parent 11efc553
No related branches found
No related tags found
No related merge requests found
......@@ -268,6 +268,15 @@ namespace armarx
}
}
void DebugDrawerTopic::removeArrow(const DebugDrawerTopic::VisuID& id)
{
if (enabled())
{
topic->removeArrowVisu(layer(id), id.name);
}
}
void DebugDrawerTopic::drawPolygon(const VisuID& id,
const std::vector<Eigen::Vector3f>& points,
const DrawColor& colorFace, float lineWidth, const DrawColor& colorEdge,
......
......@@ -372,6 +372,9 @@ namespace armarx
float width, const DrawColor& color = DEFAULTS.colorArrow,
bool ignoreLengthScale = false);
/// Remove an arrow.
void removeArrow(const VisuID& id);
/// Draw a polygon.
void drawPolygon(
......
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