Change default graph resolution and depth

This commit is contained in:
DarkPhoenix
2019-08-03 17:33:56 +03:00
parent d213e94860
commit 1b2bff8a77
3 changed files with 12 additions and 6 deletions

View File

@@ -38,10 +38,8 @@ class PointGetter(metaclass=ABCMeta):
class SmoothPointGetter(PointGetter, metaclass=ABCMeta):
def __init__(self, graph, baseResolution=50, extraDepth=2):
super().__init__(graph)
self._baseResolution = baseResolution
self._extraDepth = extraDepth
_baseResolution = 200
_extraDepth = 0
def getRange(self, xRange, miscParams, fit, tgt):
xs = []