(self, x, miscParams, src, tgt)
| 164 | return xs, ys |
| 165 | |
| 166 | def getPoint(self, x, miscParams, src, tgt): |
| 167 | time = x |
| 168 | # Prepare time cache and various data |
| 169 | self._prepareTimeCache(src=src, ancReload=miscParams['ancReload'], maxTime=time) |
| 170 | repAmountData = self._getTimeCacheDataPoint(src=src, ancReload=miscParams['ancReload'], time=time) |
| 171 | applicationMap = getApplicationPerKey(src=src, distance=miscParams['distance']) |
| 172 | y = applyReps(rrMap=repAmountData, applicationMap=applicationMap) |
| 173 | return y |
| 174 | |
| 175 | |
| 176 | # Final getters |
nothing calls this directly
no test coverage detected