mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
17 lines
381 B
Python
17 lines
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
|