| 27 | #include "SynthGlobals.h" |
| 28 | |
| 29 | void Ramp::Start(double curTime, float end, double endTime) |
| 30 | { |
| 31 | float startValue = Value(curTime); |
| 32 | Start(curTime, startValue, end, endTime); |
| 33 | } |
| 34 | |
| 35 | void Ramp::Start(double curTime, float start, float end, double endTime) |
| 36 | { |
no test coverage detected