| 141 | } |
| 142 | |
| 143 | std::pair<float, float> Group::getActionColorXY() |
| 144 | { |
| 145 | const nlohmann::json& xy = state.getValue().at("action").at("xy"); |
| 146 | return std::pair<float, float>(xy[0].get<float>(), xy[1].get<float>()); |
| 147 | } |
| 148 | std::pair<float, float> Group::getActionColorXY() const |
| 149 | { |
| 150 | const nlohmann::json& xy = state.getValue().at("action").at("xy"); |