demo_palettes.cpp
Go to the documentation of this file.
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2020, Locus Robotics
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  */
34 
36 #include <string>
37 #include <vector>
38 
40 {
42 
44 {
45 public:
46  std::string getName() const override { return "mega"; }
47  bool hasTransparency() const override { return true; }
48  std::vector<ColorRGBA24> getColors() const override
49  {
50  std::vector<ColorRGBA24> colors(6);
51  colors[0] = ColorRGBA24(0, 0, 0, 0);
52  colors[1] = ColorRGBA24(0, 0, 0, 255);
53  colors[2] = ColorRGBA24(0, 112, 236, 255);
54  colors[3] = ColorRGBA24(0, 232, 216, 255);
55  colors[4] = ColorRGBA24(252, 228, 160, 255);
56  colors[5] = ColorRGBA24(255, 255, 255, 255);
57  return colors;
58  }
59 };
60 
62 {
63 public:
64  std::string getName() const override { return "green"; }
65  bool hasTransparency() const override { return true; }
66  std::vector<ColorRGBA24> getColors() const override
67  {
68  std::vector<ColorRGBA24> colors(6);
69  colors[0] = ColorRGBA24(0, 0, 0, 0);
70  colors[1] = ColorRGBA24(0, 0, 0, 255);
71  colors[2] = ColorRGBA24(0, 148, 0, 255);
72  colors[3] = ColorRGBA24(252, 252, 252, 255);
73  colors[4] = ColorRGBA24(252, 228, 160, 255);
74  colors[5] = ColorRGBA24(255, 255, 255, 255);
75  return colors;
76  }
77 };
78 
79 } // namespace robot_nav_viz_demos
80 
bool hasTransparency() const override
bool hasTransparency() const override
std::vector< ColorRGBA24 > getColors() const override
std::vector< ColorRGBA24 > getColors() const override
std::string getName() const override
#define PLUGINLIB_EXPORT_CLASS(class_type, base_class_type)
std::string getName() const override


robot_nav_viz_demos
Author(s):
autogenerated on Sun Jan 10 2021 04:09:02