Skip to content

Commit

Permalink
15
Browse files Browse the repository at this point in the history
  • Loading branch information
villares committed Oct 15, 2023
1 parent 5bfa584 commit d55122c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
Binary file added 2023/sketch_2023_10_15/sketch_2023_10_15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions 2023/sketch_2023_10_15/sketch_2023_10_15.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from villares.arcs import b_circle_arc

def setup():
py5.size(500, 500)
r = 50
py5.size(600, 600)
r = 30
for y in range(0, py5.height + 1, r * 2):
with py5.begin_shape():
for i, x in enumerate(range(r, py5.width, r * 2)):
Expand All @@ -18,5 +18,5 @@ def setup():
b_circle_arc(x, y + r, r, 0, -py5.PI, mode=2)
else:
b_circle_arc(x, y + r, r, 0, py5.PI, mode=2)

py5.save(__file__[:-3] + '.png')
py5.run_sketch(block=False)
10 changes: 10 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ Here are listed some of the tools I have been using:

---

### sketch_2023_10_15

![sketch_2023_10_15](https://raw.githubusercontent.com/villares/sketch-a-day/main/2023/sketch_2023_10_15/sketch_2023_10_15.png)

[sketch_2023_10_15](https://github.com/villares/sketch-a-day/tree/main/2023/sketch_2023_10_15) [[py5](https://py5coding.org/)]

https://ciberlandia.pt/deck/@villares/111240083837972964

---

### sketch_2023_10_14

![sketch_2023_10_14](https://raw.githubusercontent.com/villares/sketch-a-day/main/2023/sketch_2023_10_14/sketch_2023_10_14.gif)
Expand Down

0 comments on commit d55122c

Please sign in to comment.