Skip to content

Commit 5ca96fc

Browse files
minor tweaks!
1 parent b25dc02 commit 5ca96fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ The following Python programs HAVE been turned into YouTube videos:
3939
* `infinity circle.py` in: [[2 hour version] Spinning Rainbow Circles](https://youtu.be/-QRdwDcxiGE)
4040
* `colored glass panes.py` in: [[2 hour version] Colored Glass Waves](https://youtu.be/sQ7LgaqG_bY)
4141
* `lines.py` in: To be released!
42-
* `square migration.py` in: To be released!
43-
* `square gradient.py` in: To be released!
42+
* `square migration.py` in: [[2 hour version] Rainbow Matrix of Squares](https://youtu.be/iOO4KsO17LU)
43+
* `square gradient.py` in: [[2 hour version] 4K Square Rainbow Mosaic](https://youtu.be/7QWb9KULsB8)
4444

4545
The following Python programs WILL LIKELY be turned into YouTube videos soon:
4646
* `Colored Pixels.py`

src/lines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def render(self, col):
5050
pygame.quit()
5151
quit()
5252

53-
col = color.generate_color_from_perlin_noise(now_time/3)
53+
col = color.generate_color_from_perlin_noise(now_time/5)
5454

5555
display.fill((0, 0, 0))
5656

src/square migration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, y_value):
3535
self.difference = [random.randint(-20, 20), random.randint(-20, 20), random.randint(-20, 20)]
3636
self.path = []
3737
v = random.randint(0, 1)
38-
print()
38+
3939
if v == 0:
4040
self.x_displacement = random.randint(-(display.get_width()-(SQUARE_X_CENTER+SQUARE_SIZE*2)), int(SQUARE_SIZE*1.1))
4141
else:

0 commit comments

Comments
 (0)