質問編集履歴

3

文法の修正、訂正

2020/07/15 09:18

投稿

nekodoro
nekodoro

スコア2

test CHANGED
File without changes
test CHANGED
@@ -10,11 +10,11 @@
10
10
 
11
11
 
12
12
 
13
- BitAllowというサイトでプログラミングを行っているのですが、
13
+ BitArrowというサイトでプログラミングを行っているのですが、
14
14
 
15
15
  そこのpythonのグラフィックスライブラリがimport gとなっています。
16
16
 
17
- BitAllow pythonと検索すれば出てくると思います。
17
+ BitArrow pythonと検索すれば出てくると思います。
18
18
 
19
19
 
20
20
 
@@ -25,8 +25,6 @@
25
25
  ```python
26
26
 
27
27
  import g
28
-
29
-
30
28
 
31
29
  class Point:
32
30
 
@@ -50,8 +48,6 @@
50
48
 
51
49
  g.fillOval(self.x-5, self.y-5,10,10)
52
50
 
53
-
54
-
55
51
  class Shape:
56
52
 
57
53
  def move(self,dx,dy):
@@ -72,104 +68,34 @@
72
68
 
73
69
  g.fillRect(self.o.x, self.o.y, self.width, self.height)
74
70
 
75
-
76
-
77
71
  g.drawGrid()
78
-
79
-
80
72
 
81
73
  def move():
82
74
 
83
75
  global r1
84
76
 
77
+ global r2
78
+
85
79
  g.clear()
86
80
 
87
81
  r1.draw()
88
82
 
83
+ r2.draw()
84
+
89
85
  r1.move(10,10)
86
+
87
+ r2.move(0,-10)
90
88
 
91
89
  g.setTimeout(move,100)
92
90
 
93
91
  r1=Rectangle(Point(20,50),50,50)
94
92
 
93
+ r2=Rectangle(Point(120,150),50,50)
94
+
95
95
  move()
96
+
97
+ g.wait()
96
98
 
97
99
 
98
100
 
99
- g.wait()
100
-
101
101
  ```
102
-
103
- import g
104
-
105
-
106
-
107
- class Point:
108
-
109
- def __init__(self,x,y):
110
-
111
- self.x=x
112
-
113
- self.y=y
114
-
115
- def __str__(self):
116
-
117
- return "Point({},{})".format(self.x,self.y)
118
-
119
- def move(self, dx,dy):
120
-
121
- self.x+=dx
122
-
123
- self.y+=dy
124
-
125
- def draw(self):
126
-
127
- g.fillOval(self.x-5, self.y-5,10,10)
128
-
129
-
130
-
131
- class Shape:
132
-
133
- def move(self,dx,dy):
134
-
135
- self.o.move(dx,dy)
136
-
137
- class Rectangle(Shape):
138
-
139
- def __init__(self, o, width, height):
140
-
141
- self.o=o
142
-
143
- self.width=width
144
-
145
- self.height=height
146
-
147
- def draw(self):
148
-
149
- g.fillRect(self.o.x, self.o.y, self.width, self.height)
150
-
151
-
152
-
153
- g.drawGrid()
154
-
155
-
156
-
157
- def move():
158
-
159
- global r1
160
-
161
- g.clear()
162
-
163
- r1.draw()
164
-
165
- r1.move(10,10)
166
-
167
- g.setTimeout(move,100)
168
-
169
- r1=Rectangle(Point(20,50),50,50)
170
-
171
- move()
172
-
173
-
174
-
175
- g.wait()

2

サイトの付け加え

2020/07/15 09:18

投稿

nekodoro
nekodoro

スコア2

test CHANGED
File without changes
test CHANGED
@@ -7,6 +7,18 @@
7
7
  これを応用してどのようにすればできるでしょうか
8
8
 
9
9
  グリッド線を下から上へ行くような円のアニメーションがいいです。
10
+
11
+
12
+
13
+ BitAllowというサイトでプログラミングを行っているのですが、
14
+
15
+ そこのpythonのグラフィックスライブラリがimport gとなっています。
16
+
17
+ BitAllow pythonと検索すれば出てくると思います。
18
+
19
+
20
+
21
+ インデントの修正をしました。
10
22
 
11
23
 
12
24
 

1

インデントの修正

2020/07/15 08:30

投稿

nekodoro
nekodoro

スコア2

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
 
12
12
 
13
-
13
+ ```python
14
14
 
15
15
  import g
16
16
 
@@ -85,3 +85,79 @@
85
85
 
86
86
 
87
87
  g.wait()
88
+
89
+ ```
90
+
91
+ import g
92
+
93
+
94
+
95
+ class Point:
96
+
97
+ def __init__(self,x,y):
98
+
99
+ self.x=x
100
+
101
+ self.y=y
102
+
103
+ def __str__(self):
104
+
105
+ return "Point({},{})".format(self.x,self.y)
106
+
107
+ def move(self, dx,dy):
108
+
109
+ self.x+=dx
110
+
111
+ self.y+=dy
112
+
113
+ def draw(self):
114
+
115
+ g.fillOval(self.x-5, self.y-5,10,10)
116
+
117
+
118
+
119
+ class Shape:
120
+
121
+ def move(self,dx,dy):
122
+
123
+ self.o.move(dx,dy)
124
+
125
+ class Rectangle(Shape):
126
+
127
+ def __init__(self, o, width, height):
128
+
129
+ self.o=o
130
+
131
+ self.width=width
132
+
133
+ self.height=height
134
+
135
+ def draw(self):
136
+
137
+ g.fillRect(self.o.x, self.o.y, self.width, self.height)
138
+
139
+
140
+
141
+ g.drawGrid()
142
+
143
+
144
+
145
+ def move():
146
+
147
+ global r1
148
+
149
+ g.clear()
150
+
151
+ r1.draw()
152
+
153
+ r1.move(10,10)
154
+
155
+ g.setTimeout(move,100)
156
+
157
+ r1=Rectangle(Point(20,50),50,50)
158
+
159
+ move()
160
+
161
+
162
+
163
+ g.wait()