plcopen/plcopen.py
changeset 1831 56b48961cc68
parent 1780 c52d1460cea8
child 1832 0f1081928d65
equal deleted inserted replaced
1830:e598d1acf354 1831:56b48961cc68
    82     if v2 is not None:
    82     if v2 is not None:
    83         return function(v1, v2)
    83         return function(v1, v2)
    84     return v1
    84     return v1
    85 
    85 
    86 
    86 
    87 class rect:
    87 class rect(object):
    88     """
    88     """
    89     Helper class for bounding_box calculation
    89     Helper class for bounding_box calculation
    90     """
    90     """
    91 
    91 
    92     def __init__(self, x=None, y=None, width=None, height=None):
    92     def __init__(self, x=None, y=None, width=None, height=None):