Skip to content
Snippets Groups Projects
Commit 9a6a70d6 authored by Fabian Tërnava's avatar Fabian Tërnava
Browse files

Merge branch 'master' of https://gitlab.com/ArmarX/RobotAPI

parents dc8eae9c 412b5946
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,23 @@ BOOST_AUTO_TEST_CASE(test_addPoint_color_types)
BOOST_FIXTURE_TEST_SUITE(test_pointCloud_suite, PointCloudFixture)
BOOST_AUTO_TEST_CASE(test_pointCloud_colorByLabel)
{
bool colorByLabel = false;
pc.pointCloud(points, colorByLabel);
BOOST_CHECK_EQUAL(ps.size(), 1);
BOOST_CHECK_EQUAL(ps.front().color, simox::Color(1, 2, 3, 4));
colorByLabel = true;
pc.pointCloud(points, colorByLabel);
BOOST_CHECK_EQUAL(ps.size(), 1);
BOOST_CHECK_EQUAL(ps.front().color, simox::color::GlasbeyLUT::at(points.front().label));
}
BOOST_AUTO_TEST_CASE(test_pointCloud_color_func)
{
// Test returning a viz::Color.
......
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