MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / _calcPoint

Method _calcPoint

graphs/data/base/graph.py:203–209  ·  view source on GitHub ↗
(self, x, miscInputs, xSpec, ySpec, src, tgt)

Source from the content-addressed store, hash-verified

201 return xs, ys
202
203 def _calcPoint(self, x, miscInputs, xSpec, ySpec, src, tgt):
204 x = self._normalizeValue(value=x, axisSpec=xSpec, src=src, tgt=tgt)
205 miscParams = self._normalizeMisc(miscInputs=miscInputs, src=src, tgt=tgt)
206 miscParams = self._limitMisc(miscParams=miscParams, src=src, tgt=tgt)
207 y = self._getPoint(x=x, miscParams=miscParams, xSpec=xSpec, ySpec=ySpec, src=src, tgt=tgt)
208 y = self._denormalizeValue(value=y, axisSpec=ySpec, src=src, tgt=tgt)
209 return y
210
211 _normalizers = {}
212

Callers 1

getPointMethod · 0.95

Calls 5

_normalizeValueMethod · 0.95
_normalizeMiscMethod · 0.95
_limitMiscMethod · 0.95
_getPointMethod · 0.95
_denormalizeValueMethod · 0.95

Tested by

no test coverage detected