notes/lib/canvas/path/ring_number_provider.dart
lukas-heiligenbrunner 8e0cd05ded allow zooming on desktop when holding ctrl and scrolling
add prototype of selection mode, span up dashed rectangle
2022-12-02 00:25:37 +01:00

14 lines
213 B
Dart

class RingNumberProvider {
RingNumberProvider(this._vals);
final List<double> _vals;
int _idx = 0;
double get next {
if (_idx >= _vals.length) {
_idx = 0;
}
return _vals[_idx++];
}
}