colorlab
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

page.py
text/x-python

Download raw (307 bytes)

def Page():
    def __init__ (self, top, right, bottom, left):
        self.top = top
        self.right = right
        self.bottom = bottom
        self.left = left
        
    def height (self):
        return self.top - self.bottom

    def width (self):
        return self.right - self.left