pam.location Location(loc=None, link=None, area=None) # Source code in src/pam/location.py 2 3 4 5def __init__(self, loc=None, link=None, area=None): self.loc = loc self.link = link self.area = area area = area instance-attribute # exists property # link = link instance-attribute # loc = loc instance-attribute # max property # min property # x property # y property # copy() # Source code in src/pam/location.py 58 59def copy(self): return Location(loc=self.loc, link=self.link, area=self.area)