Different colors for SLA support and pad geometry

This commit is contained in:
Enrico Turri 2018-11-22 11:01:57 +01:00
parent 28a502680a
commit 343335dbc3
2 changed files with 7 additions and 4 deletions

View file

@ -253,6 +253,8 @@ public:
static const float OUTSIDE_COLOR[4];
static const float SELECTED_OUTSIDE_COLOR[4];
static const float DISABLED_COLOR[4];
static const float SLA_SUPPORT_COLOR[4];
static const float SLA_PAD_COLOR[4];
GLVolume(float r = 1.f, float g = 1.f, float b = 1.f, float a = 1.f);
GLVolume(const float *rgba) : GLVolume(rgba[0], rgba[1], rgba[2], rgba[3]) {}