| 36 | } |
| 37 | |
| 38 | void MorphController::SetTimes(std::vector<float> const& times) |
| 39 | { |
| 40 | LogAssert(times.size() >= mNumTimes, "Input times array is too small."); |
| 41 | std::copy(times.begin(), times.end(), mTimes.begin()); |
| 42 | } |
| 43 | |
| 44 | void MorphController::SetWeights(size_t key, std::vector<float> const& weights) |
| 45 | { |
no test coverage detected