Get the rounded INT value at a specific index
| 285 | |
| 286 | // Get the rounded INT value at a specific index |
| 287 | int64_t Keyframe::GetLong(int64_t index) const { |
| 288 | return long(round(GetValue(index))); |
| 289 | } |
| 290 | |
| 291 | // Get the direction of the curve at a specific index (increasing or decreasing) |
| 292 | bool Keyframe::IsIncreasing(int index) const |
no outgoing calls
no test coverage detected