Get the number of values (i.e. coordinates on the X axis)
| 415 | |
| 416 | // Get the number of values (i.e. coordinates on the X axis) |
| 417 | int64_t Keyframe::GetLength() const { |
| 418 | if (Points.empty()) return 0; |
| 419 | if (Points.size() == 1) return 1; |
| 420 | return round(Points.back().co.X); |
| 421 | } |
| 422 | |
| 423 | // Get the number of points (i.e. # of points) |
| 424 | int64_t Keyframe::GetCount() const { |
no outgoing calls
no test coverage detected