當前位置: 首頁>>代碼示例>>Python>>正文


Python turtle.fd方法代碼示例

本文整理匯總了Python中turtle.fd方法的典型用法代碼示例。如果您正苦於以下問題:Python turtle.fd方法的具體用法?Python turtle.fd怎麽用?Python turtle.fd使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在turtle的用法示例。


在下文中一共展示了turtle.fd方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: body

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def body():
    '''
    身體
    '''
    t.color("red", (255, 99, 71))
    t.pu()
    t.seth(90)
    t.fd(-20)
    t.seth(0)
    t.fd(-78)
    t.pd()
    t.begin_fill()
    t.seth(-130)
    t.circle(100, 10)
    t.circle(300, 30)
    t.seth(0)
    t.fd(230)
    t.seth(90)
    t.circle(300, 30)
    t.circle(100, 3)
    t.color((255, 155, 192), (255, 100, 100))
    t.seth(-135)
    t.circle(-80, 63)
    t.circle(-150, 24)
    t.end_fill() 
開發者ID:MiracleYoung,項目名稱:You-are-Pythonista,代碼行數:27,代碼來源:xzpq.py

示例2: tail

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def tail():
    '''
    尾巴
    '''
    t.pensize(4)
    t.color((255, 155, 192))
    t.pu()
    t.seth(90)
    t.fd(70)
    t.seth(0)
    t.fd(95)
    t.pd()
    t.seth(0)
    t.circle(70, 20)
    t.circle(10, 330)
    t.circle(70, 30) 
開發者ID:MiracleYoung,項目名稱:You-are-Pythonista,代碼行數:18,代碼來源:xzpq.py

示例3: run_instruction

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def run_instruction(t):
    if t.data == 'change_color':
        turtle.color(*t.children)   # We just pass the color names as-is

    elif t.data == 'movement':
        name, number = t.children
        { 'f': turtle.fd,
          'b': turtle.bk,
          'l': turtle.lt,
          'r': turtle.rt, }[name](int(number))

    elif t.data == 'repeat':
        count, block = t.children
        for i in range(int(count)):
            run_instruction(block)

    elif t.data == 'fill':
        turtle.begin_fill()
        run_instruction(t.children[0])
        turtle.end_fill()

    elif t.data == 'code_block':
        for cmd in t.children:
            run_instruction(cmd)
    else:
        raise SyntaxError('Unknown instruction: %s' % t.data) 
開發者ID:lark-parser,項目名稱:lark,代碼行數:28,代碼來源:turtle_dsl.py

示例4: head

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def head():
    '''
    頭
    '''
    t.color((255, 155, 192), "pink")
    t.pu()
    t.seth(90)
    t.fd(41)
    t.seth(0)
    t.fd(0)
    t.pd()
    t.begin_fill()
    t.seth(180)
    t.circle(300, -30)  # 順時針畫一個半徑為300,圓心角為30°的園
    t.circle(100, -60)
    t.circle(80, -100)
    t.circle(150, -20)
    t.circle(60, -95)
    t.seth(161)
    t.circle(-300, 15)
    t.pu()
    t.goto(-100, 100)
    t.pd()
    t.seth(-30)
    a = 0.4
    for i in range(60):
        if 0 <= i < 30 or 60 <= i < 90:
            a = a + 0.08
            t.lt(3)  # 向左轉3度
            t.fd(a)  # 向前走a的步長
        else:
            a = a - 0.08
            t.lt(3)
            t.fd(a)
    t.end_fill() 
開發者ID:MiracleYoung,項目名稱:You-are-Pythonista,代碼行數:37,代碼來源:xzpq.py

示例5: ear

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def ear():
    '''
    耳朵
    '''
    t.color((255, 155, 192), "pink")
    t.pu()
    t.seth(90)
    t.fd(-7)
    t.seth(0)
    t.fd(70)
    t.pd()
    t.begin_fill()
    t.seth(100)
    t.circle(-50, 50)
    t.circle(-10, 120)
    t.circle(-50, 54)
    t.end_fill()
    t.pu()
    t.seth(90)
    t.fd(-12)
    t.seth(0)
    t.fd(30)
    t.pd()
    t.begin_fill()
    t.seth(100)
    t.circle(-50, 50)
    t.circle(-10, 120)
    t.circle(-50, 56)
    t.end_fill() 
開發者ID:MiracleYoung,項目名稱:You-are-Pythonista,代碼行數:31,代碼來源:xzpq.py

示例6: blusher

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def blusher():
    '''
    腮
    '''
    t.color((255, 155, 192))
    t.pu()
    t.seth(90)
    t.fd(-95)
    t.seth(0)
    t.fd(65)
    t.pd()
    t.begin_fill()
    t.circle(30)
    t.end_fill() 
開發者ID:MiracleYoung,項目名稱:You-are-Pythonista,代碼行數:16,代碼來源:xzpq.py

示例7: hand

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def hand():
    '''
    手
    '''
    t.color((255, 155, 192))
    t.pu()
    t.seth(90)
    t.fd(-40)
    t.seth(0)
    t.fd(-27)
    t.pd()
    t.seth(-160)
    t.circle(300, 15)
    t.pu()
    t.seth(90)
    t.fd(15)
    t.seth(0)
    t.fd(0)
    t.pd()
    t.seth(-10)
    t.circle(-20, 90)
    t.pu()
    t.seth(90)
    t.fd(30)
    t.seth(0)
    t.fd(237)
    t.pd()
    t.seth(-20)
    t.circle(-300, 15)
    t.pu()
    t.seth(90)
    t.fd(20)
    t.seth(0)
    t.fd(0)
    t.pd()
    t.seth(-170)
    t.circle(20, 90) 
開發者ID:MiracleYoung,項目名稱:You-are-Pythonista,代碼行數:39,代碼來源:xzpq.py

示例8: foot

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def foot():
    '''
    腳
    '''
    t.pensize(10)
    t.color((240, 128, 128))
    t.pu()
    t.seth(90)
    t.fd(-75)
    t.seth(0)
    t.fd(-180)
    t.pd()
    t.seth(-90)
    t.fd(40)
    t.seth(-180)
    t.color("black")
    t.pensize(15)
    t.fd(20)
    t.pensize(10)
    t.color((240, 128, 128))
    t.pu()
    t.seth(90)
    t.fd(40)
    t.seth(0)
    t.fd(90)
    t.pd()
    t.seth(-90)
    t.fd(40)
    t.seth(-180)
    t.color("black")
    t.pensize(15)
    t.fd(20) 
開發者ID:MiracleYoung,項目名稱:You-are-Pythonista,代碼行數:34,代碼來源:xzpq.py

示例9: arc

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def arc(sa, ea, x, y, r):  # start angle,end angle,circle center,radius
    turtle.penup()
    turtle.goto(x, y)
    turtle.setheading(0)
    turtle.left(sa)
    turtle.fd(r)
    turtle.pendown()
    turtle.left(90)
    turtle.circle(r, (ea - sa))
    return turtle.position() 
開發者ID:MiracleYoung,項目名稱:You-are-Pythonista,代碼行數:12,代碼來源:bqb.py

示例10: draw_1

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def draw_1(length, level):
    if level < 1:
        turtle.fd(length)
    else:
        length = length/3
        
        draw_1(length, level-1)
        turtle.left(90)
        draw_1(length, level-1)
        turtle.right(90)
        draw_1(length, level-1)
        turtle.right(90)
        draw_1(length, level-1)
        turtle.left(90)
        draw_1(length, level-1) 
開發者ID:furas,項目名稱:python-examples,代碼行數:17,代碼來源:main-2-left-right-draw_1.py

示例11: draw_2

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def draw_2(length, level):
    if level < 1:
        turtle.fd(length)
    else:
        length = length/3
        
        draw_2(length, level-1)
        turtle.left(60)
        draw_2(length, level-1)
        turtle.right(180-60)
        draw_2(length, level-1)
        turtle.left(60)
        draw_2(length, level-1) 
開發者ID:furas,項目名稱:python-examples,代碼行數:15,代碼來源:main-2-left-right-draw_1.py

示例12: horizontal

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def horizontal(dx):  # 做到相對橫坐標為dx的水平線
    te.seth(0)
    te.pendown()
    te.fd(dx)
    te.penup() 
開發者ID:Seraphir,項目名稱:turtle-vectorgraph,代碼行數:7,代碼來源:homura.py

示例13: vertical

# 需要導入模塊: import turtle [as 別名]
# 或者: from turtle import fd [as 別名]
def vertical(dy):  # 做到相對縱坐標為dy的垂直線
    te.seth(-90)
    te.pendown()
    te.fd(dy)
    te.penup()
    te.seth(0) 
開發者ID:Seraphir,項目名稱:turtle-vectorgraph,代碼行數:8,代碼來源:homura.py


注:本文中的turtle.fd方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。