ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I forgot to add color to the marker and only added color to the points. I got the transparency effect by removing the following line:
scan_marker.colors.push_back(scan_color);
and adding the following line:
scan_marker.color = scan_color;
2 | No.2 Revision |
I forgot to add color to the marker and only added color to the points. I got the transparency effect by removing the following line:line
scan_marker.colors.push_back(scan_color);
and adding the following line:like outside the loop
scan_marker.color = scan_color;
3 | No.3 Revision |
I forgot to add color to the marker and only added color to the points. I got the transparency effect by removing the line
scan_marker.colors.push_back(scan_color);
and adding the following like line outside the loop
scan_marker.color = scan_color;