| 189 | } |
| 190 | |
| 191 | void TimeTrack::Clear(double t0, double t1) |
| 192 | { |
| 193 | auto sampleTime = 1.0 / GetRate(*this); |
| 194 | mEnvelope->CollapseRegion( t0, t1, sampleTime ); |
| 195 | } |
| 196 | |
| 197 | void TimeTrack::Paste(double t, const Track &src) |
| 198 | { |
nothing calls this directly
no test coverage detected