* @protected
()
| 58 | * @protected |
| 59 | */ |
| 60 | initOffsets() { |
| 61 | const timestamps = this._getTimestampsForTable(); |
| 62 | const table = this._table = this.buildLookupTable(timestamps); |
| 63 | this._minPos = interpolate(table, this.min); |
| 64 | this._tableRange = interpolate(table, this.max) - this._minPos; |
| 65 | super.initOffsets(timestamps); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Returns an array of {time, pos} objects used to interpolate a specific `time` or position |
nothing calls this directly
no test coverage detected