Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 169ffb2

Browse files
committed
Pygame
1 parent 9ad9e71 commit 169ffb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2968,7 +2968,7 @@ while all(event.type != pg.QUIT for event in pg.event.get()):
29682968

29692969
```python
29702970
pg.draw.line(<Surf>, color, (x1, y1), (x2, y2), width)
2971-
pg.draw.arc(<Surf>, color, <Rect>, start_radians, stop_radians)
2971+
pg.draw.arc(<Surf>, color, <Rect>, from_radians, to_radians)
29722972
pg.draw.rect(<Surf>, color, <Rect>)
29732973
pg.draw.polygon(<Surf>, color, points)
29742974
pg.draw.ellipse(<Surf>, color, <Rect>)

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2521,7 +2521,7 @@
25212521
&lt;Surf&gt; = pg.transform.scale(&lt;Surf&gt;, (width, height))
25222522
</code></pre>
25232523
<pre><code class="python language-python hljs">pg.draw.line(&lt;Surf&gt;, color, (x1, y1), (x2, y2), width)
2524-
pg.draw.arc(&lt;Surf&gt;, color, &lt;Rect&gt;, start_radians, stop_radians)
2524+
pg.draw.arc(&lt;Surf&gt;, color, &lt;Rect&gt;, from_radians, to_radians)
25252525
pg.draw.rect(&lt;Surf&gt;, color, &lt;Rect&gt;)
25262526
pg.draw.polygon(&lt;Surf&gt;, color, points)
25272527
pg.draw.ellipse(&lt;Surf&gt;, color, &lt;Rect&gt;)

0 commit comments

Comments
 (0)