-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (115 loc) · 5.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.9.0/css/all.css" integrity="sha384-i1LQnF23gykqWXg6jxC2ZbCbUMxyw5gLZY6UiUS98LYV5unm8GWmfkIS6jqJfb4E" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/87c1f5f824.js"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<title>pygame</title>
<link rel="icon" href="./logo.png" type="image/x-icon">
<style>
*{
font-family: 'Courier New', Courier, monospace;
}
.code{
background-color: rgb(240, 240, 240);
border-radius: 2.5px;
color: black;
}
strong{
font-style: italic;
}
.special{
font-weight: bold;
font-style: oblique;
}
hr{
border: 0.0125em solid;
}
</style>
</head>
<body>
<div class="container-fluid ml-2 mt-3">
<h4 class="h4">Titles:</h3>
<ol>
<li>Introduction to pygame</li>
<li>Draw shapes with pygame:</li>
<ol type="I">
<li>
Introduction.
</li>
<li>
<code class="code">draw.line</code> & <code class="code">draw.lines</code> .
</li>
<li>
Anti Aliasing.
</li>
<li>
<code class="code">draw.circles</code>, <code class="code">draw.ellipse</code> & <code class="code">draw.arcs</code>.
</li>
<li>
<code class="code">draw.rect</code> & <code class="code">draw.polygon</code> + <strong>Regular Polygons Algorithm</strong>.
</li>
<li>Examples:</li>
<ul>
<li>
Clock.
</li>
<li>
Conway Game Of life with pygame.
</li>
<li>
<span class="special">Cube & geometry of 3D transformation.</span>
</li>
<li>
<span class="special">Signal Plotter.</span>
</li>
</ul>
</ol>
<li>event handling in pygame:</li>
<ol type="I">
<li>
what is event handling?
</li>
<li>
read keys & keys constants in pygame.
</li>
<li>
snake for 1000th time! but with pygame. :)
</li>
<li>
simple canon and physics of it.
</li>
</ol>
<li>Open image, video & sounds with pygame</li>
<li>transform class</li>
</ol>
</div>
<div class="container-fluid mt-5 mb-5">
<div class="row justify-content-center">
<hr class="col-12 mb-3"/>
<h4 class="col-12 h4 text-center mb-5">where to find us</h4>
<a href="https://github.com/iranpythoneers" style="color: black;" class="col-2 ml-1 text-center" target="_blank" rel="GitHub">
<i class="fab fa-git fa-3x"></i>
</a>
<a href="https://youtube.com/channel/UCi7T0SBUUjDWsErXQd2iluA" style="color: black;" class="col-2 ml-1 text-center" target="_blank" rel="youtube">
<i class="fab fa-youtube fa-3x"></i>
</a>
<a href="https://www.instagram.com/iranpythoneers/" style="color: black;" class="col-2 ml-1 text-center" target="_blank" rel="instagram">
<i class="fab fa-instagram fa-3x"></i>
</a>
<a href="https://t.me/iranpythoneers" style="color: black;" class="col-2 ml-1 text-center" target="_blank" rel="telegram">
<i class="fab fa-telegram fa-3x"></i>
</a>
<a href="https://virgool.io/iranpythoneers" style="color: black;" class="col-2 ml-1 text-center" target="_blank" rel="virgool">
<i class="fas fa-book-reader fa-3x"></i>
</a>
</div>
</div>
</body>
</html>