(self, x, miscParams, src, tgt, commonData)
| 99 | return {'rrMap': self._getRepsPerKey(src=src, ancReload=miscParams['ancReload'], time=miscParams['time'])} |
| 100 | |
| 101 | def _calculatePoint(self, x, miscParams, src, tgt, commonData): |
| 102 | distance = x |
| 103 | applicationMap = getApplicationPerKey(src=src, distance=distance) |
| 104 | y = applyReps( |
| 105 | rrMap=commonData['rrMap'], |
| 106 | applicationMap=applicationMap) |
| 107 | return y |
| 108 | |
| 109 | |
| 110 | class XTimeMixin(PointGetter): |
nothing calls this directly
no test coverage detected