Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how draw shell in python

import turtle as t
import math
n = 1
size = 25
t.speed(0)
for x in range(16):
    t.fd(size*n)
    t.lt(90)
    t.fd(size)
    n = math.sqrt((n**2)+1)
    t.lt(180 - math.degrees(math.acos(1/n)))
    t.fd(size*n)
    t.lt(180)
 
PREVIOUS NEXT
Tagged: #draw #shell #python
ADD COMMENT
Topic
Name
2+5 =