| 887 | } |
| 888 | |
| 889 | double Envelope::GetValueRelative(double t, bool leftLimit) const noexcept |
| 890 | { |
| 891 | double temp; |
| 892 | |
| 893 | GetValuesRelative(&temp, 1, t, 0.0, leftLimit); |
| 894 | return temp; |
| 895 | } |
| 896 | |
| 897 | // relative time |
| 898 | /// @param Lo returns last index at or before this time, maybe -1 |