Ejemplo n.º 1
0
    def __str__(self):
        """ Human readable representation
        
        Returns:
        str -- all the information regarding the Calibrator
        """

        return 'Calibrator: {0}'.format(Quadrilateral.__str__(self))
Ejemplo n.º 2
0
    def __str__(self):
        """ Human readable representation
        
        Returns:
        str -- all the information regarding the QR code
        """

        return 'QR: aux:{0}, points:{1}, width:{2}, height:{3}, rotation:{4}, {5}'.format(self.aux, 
                                                                                            self.points, 
                                                                                            self.width, 
                                                                                            self.height,
                                                                                            self.rotation,
                                                                                            Quadrilateral.__str__(self))