| 183 | */ |
| 184 | void SetPlotColor(int i, double r, double g, double b); |
| 185 | void SetPlotColor(int i, const double color[3]) |
| 186 | { |
| 187 | this->SetPlotColor(i, color[0], color[1], color[2]); |
| 188 | } |
| 189 | double* GetPlotColor(int i); |
| 190 | ///@} |
| 191 |
nothing calls this directly
no test coverage detected