コード例 #1
0
ファイル: gui.py プロジェクト: Nokorot/PythonGeneral
    def __init__(self, bounds):
        self.x, self.y, self.width, self.height = fromBounds(bounds)

        self.xcenter = self.x + self.width / 2
        self.ycenter = self.y + self.height / 2

        self.selected = 0
        self.comps = []
コード例 #2
0
ファイル: gui.py プロジェクト: Nokorot/PythonGeneral
 def __init__(self, bounds):
     self.x, self.y, self.width, self.height = fromBounds(bounds)
コード例 #3
0
ファイル: gui.py プロジェクト: Nokorot/PythonGeneral
 def __init__(self, bounds, X, Y, space):
     self.x, self.y, self.width, self.height = fromBounds(bounds)
     self.space = space
     self.X = X
     self.Y = Y