jpcad/Shape.py
2011-03-30 16:46:34 -04:00

8 lines
153 B
Python

class Shape(object):
def getVar(self, varid):
return self.vars[varid]
def setVar(self, varid, value):
self.vars[varid] = value