Skip to content

Commit

Permalink
chore: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaokang2022 committed Jan 14, 2025
1 parent 2ac79b3 commit 780e507
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ for i in range(26):
φ = i/26 * math.tau
c1 = r * math.sin(φ)
c2 = r * math.cos(φ)
ring['x'].append(three.Text3D(space, (0, c1, c2), text=t, fill='#FF0000'))
ring['y'].append(three.Text3D(space, (c1, 0, c2), text=t, fill='#00FF00'))
ring['z'].append(three.Text3D(space, (c1, c2, 0), text=t, fill='#0000FF'))
ring['x'].append(three.Text3D(space, (0, c1, c2), text=t, fill='red'))
ring['y'].append(three.Text3D(space, (c1, 0, c2), text=t, fill='forestgreen'))
ring['z'].append(three.Text3D(space, (c1, c2, 0), text=t, fill='royalblue'))

for i in range(10):
t = str(i)
Expand Down

0 comments on commit 780e507

Please sign in to comment.