| 201 | } |
| 202 | |
| 203 | float64 Row::CornerLayersManager::progressForLayer(Layer layer) const { |
| 204 | return (_nextLayer == layer) |
| 205 | ? progress() |
| 206 | : (_prevLayer == layer) |
| 207 | ? (1. - progress()) |
| 208 | : 0.; |
| 209 | } |
| 210 | |
| 211 | float64 Row::CornerLayersManager::progress() const { |
| 212 | return _animation.value(1.); |
no outgoing calls
no test coverage detected