| 29 | } |
| 30 | |
| 31 | void MorphController::SetVertices(size_t target, std::vector<Vector3<float>> const& vertices) |
| 32 | { |
| 33 | LogAssert(target < mNumTargets && vertices.size() >= mNumVertices, |
| 34 | "Invalid target or input vertices array is too small."); |
| 35 | std::copy(vertices.begin(), vertices.end(), mVertices.begin() + target * mNumVertices); |
| 36 | } |
| 37 | |
| 38 | void MorphController::SetTimes(std::vector<float> const& times) |
| 39 | { |
no test coverage detected