2つの四角形を移動させるコードを作ったのですが
このコードにコードを追加して
円を移動する図形に1つ変えたいです。
クラスを追加して円と四角形の二つを移動させるコードにするにはどのように追加できますか。
円は下から上に移動できるようにします。
python
1import g 2class Point: 3 def __init__(self,x,y): 4 self.x=x 5 self.y=y 6 def __str__(self): 7 return "Point({},{})".format(self.x,self.y) 8 def move(self, dx,dy): 9 self.x+=dx 10 self.y+=dy 11 def draw(self): 12 g.fillOval(self.x-5, self.y-5,10,10) 13class Shape: 14 def move(self,dx,dy): 15 self.o.move(dx,dy) 16class Circle: 17 def __init__(self,o,r): 18 self.o=o 19 self,r=r 20class Rectangle(Shape): 21 def __init__(self, o, width, height): 22 self.o=o 23 self.width=width 24 self.height=height 25 def draw(self): 26 g.fillRect(self.o.x, self.o.y, self.width, self.height) 27class Rectangle2(Circle): 28 def __init__(self, o, width, height): 29 self.o=o 30 self.width=width 31 self.height=height 32 def draw(self): 33 g.fillRect(self.o.x, self.o.y, self.width, self.height 34g.drawGrid() 35def move(): 36 global r1 37 global r2 38 g.clear() 39 r1.draw() 40 r2.draw() 41 r1.move(10,10) 42 r2.move(0,-10) 43 g.setTimeout(move,100) 44r1=Rectangle(Point(20,50),50,50) 45r2=Rectangle2(Point(120,150),50,50) 46move() 47g.wait() 48### ヘディングのテキスト
https://teratail.com/questions/276633
もう一度言いますが、前回質問の追記修正依頼に応答してください。
変更したので見てもらえると幸いです。
あなたの回答
tips
プレビュー