Blame view

src/external_modules/visibility_calculator.py 241 Bytes
1aed430d   jeremy   Alert handled + k...
1
2
3
4
5
6
7
8
9
10
11
12
from utils.Logger import *

'''
    Class made to manage the sequences visibility
'''


class VisibilityCalculator(Logger):

    # Return the visible interval
    def getVisibleInterval(self, coordinates) -> tuple:
        return (0, 20000)