From 4f05f131e97f24a0d9a41abcccc300cdc53563db Mon Sep 17 00:00:00 2001 From: Alexandre B A Villares <3694604+villares@users.noreply.github.com> Date: Thu, 19 Dec 2024 00:08:05 -0300 Subject: [PATCH] Update sketch_2024_12_18.py --- 2024/sketch_2024_12_18/sketch_2024_12_18.py | 1 - 1 file changed, 1 deletion(-) diff --git a/2024/sketch_2024_12_18/sketch_2024_12_18.py b/2024/sketch_2024_12_18/sketch_2024_12_18.py index 6a783f6f..bf352288 100644 --- a/2024/sketch_2024_12_18/sketch_2024_12_18.py +++ b/2024/sketch_2024_12_18/sketch_2024_12_18.py @@ -19,7 +19,6 @@ def dodecahedron(radius): a = radius / 1.618033989 b = radius c = 0.618033989 * a - global verts, faces verts = np.array([ (a, a, a), (a, a, -a), (a, -a, a), (a, -a, -a), (-a, a, a), (-a, a, -a), (-a, -a, a), (-a, -a, -a), (0, c, b), (0, c, -b),