| 54 | |
| 55 | std::span<const float> values() const { return mValues; } |
| 56 | void setValues(std::span<const float> values) { mValues = {values.begin(), values.end()}; } |
| 57 | |
| 58 | std::span<nanogui::Color> colors() { return mColors; } |
| 59 | void setColors(std::span<const nanogui::Color> colors) { mColors = {colors.begin(), colors.end()}; } |