Updating RGBColor to a char array.

This commit is contained in:
Patrick Shriwise 2018-10-30 22:30:45 -05:00
parent 51578a7342
commit 66bdf04511
2 changed files with 12 additions and 5 deletions

View file

@ -35,7 +35,7 @@ extern std::vector<Plot> plots; //!< Plot instance container
// RGBColor holds color information for plotted objects
//===============================================================================
typedef std::array<int, 3> RGBColor;
typedef std::array<char, 3> RGBColor;
typedef xt::xtensor<RGBColor, 2> ImageData;