mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
17 lines
No EOL
381 B
Python
17 lines
No EOL
381 B
Python
class DNASuitEdge:
|
|
def __init__(self, startpt, endpt, zoneId):
|
|
self.startpt = startpt
|
|
self.endpt = endpt
|
|
self.zoneId = zoneId
|
|
|
|
def getEndPoint(self):
|
|
return self.endpt
|
|
|
|
def getStartPoint(self):
|
|
return self.startpt
|
|
|
|
def getZoneId(self):
|
|
return self.zoneId
|
|
|
|
def setZoneId(self, zoneId):
|
|
self.zoneId = zoneId |