visibility_calculator.py 241 Bytes Edit Raw Blame History 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)