Source code for gbvision.utils.continuity.continues_rect

from .continues_shape import ContinuesShape
from gbvision.utils.shapes.base_rect import BaseRect


[docs]class ContinuesRect(ContinuesShape): """ An implementation of ContinuesShape to rectangles. used to try and check whether two rectangles are indeed the same one. """ @staticmethod def _base_shape(): return BaseRect