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
This is not an issue, but a feature request for the future.
It would be nice to have more types of 3D markers in the GUI. For example, the following types supported by ROS visualization_msgs/Marker messages are not available in mc_rtc.
boxes (CUBE in visualization_msgs/Marker)
spheres and ellipsoids (SPHERE in visualization_msgs/Marker)
lines (LINE_LIST in visualization_msgs/Marker. Although LINE_STRIP can be handled by mc_rtc::gui::Trajectory, LINE_LIST is still useful.)
creating Visual objects is a little more involved than they should be
we cannot display ellipsoid via Sphere (since the Visual element is from the definition of URDF visual elements) but we can via Superellipsoid although I think the client does not handle them
Note: mc_rtc's Visual also handles cylinders and meshes
I think we can add a nice helper to simplify usage here (and improve the docs)
To handle LINE_LIST we have to introduce a new type in mc_rtc GUI.
This is not an issue, but a feature request for the future.
It would be nice to have more types of 3D markers in the GUI. For example, the following types supported by ROS
visualization_msgs/Marker
messages are not available in mc_rtc.CUBE
invisualization_msgs/Marker
)SPHERE
invisualization_msgs/Marker
)LINE_LIST
invisualization_msgs/Marker
. AlthoughLINE_STRIP
can be handled bymc_rtc::gui::Trajectory
,LINE_LIST
is still useful.)Supporting these features reduces the motivation for users to do things away from the mc_rtc concept, such as publishing their own ROS topics for the GUI as in https://github.com/isri-aist/Motion6DoF/pull/5#issuecomment-1418423577.
The text was updated successfully, but these errors were encountered: