| 280 | const std::array<float, 4> &line_spec::color() const { return color_; } |
| 281 | |
| 282 | float line_spec::alpha() const { return color_[0]; } |
| 283 | |
| 284 | void line_spec::color(const std::array<float, 3> &color) { |
| 285 | color_ = {0, color[0], color[1], color[2]}; |
no outgoing calls
no test coverage detected