コード例 #1
0
 def __init__(self, x0, y0, w, h):
     '''
     Constructor
     '''
     pyHAbstractFigure.__init__(self)
     self.x0 = x0
     self.y0 = y0
     self.w = w
     self.h = h
コード例 #2
0
 def __init__(self,x0,y0,w,h):
     '''
     Constructor
     '''
     pyHAbstractFigure.__init__(self)
     self.x0=x0
     self.y0=y0
     self.w=w
     self.h=h
コード例 #3
0
 def __init__(self,x0,y0,w,h,ans,ane):
     '''
     Constructor
     '''
     pyHAbstractFigure.__init__(self)
     self.arc=pyHArc(x0,y0,w,h,ans,ane)
コード例 #4
0
 def __init__(self):
     pyHAbstractFigure.__init__(self)
     self.points=[]
コード例 #5
0
 def __init__(self):
     pyHAbstractFigure.__init__(self)
     self.points = []
コード例 #6
0
 def __init__(self, x0, y0, w, h, ans, ane):
     '''
     Constructor
     '''
     pyHAbstractFigure.__init__(self)
     self.arc = pyHArc(x0, y0, w, h, ans, ane)
コード例 #7
0
 def __init__(self):
     pyHAbstractFigure.__init__(self)
     self.points = []
     # maxDist is distance from pq to segment
     self.maxDist = 2