python中right是什么意思_Python turtle.right方法代码示例

本文整理汇总了Python中turtle.right方法的典型用法代码示例。如果您正苦于以下问题:Python turtle.right方法的具体用法?Python turtle.right怎么用?Python turtle.right使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在模块turtle的用法示例。

在下文中一共展示了turtle.right方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: draw_tree

​点赞 7

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def draw_tree(length, width=9):

color = 'brown'

if length < 1:

return

elif length < 3:

color = 'green'

if width < 1:

width = 1

turtle.color(color)

turtle.width(width)

turtle.forward(length)

turtle.left(30)

draw_tree(length / FACTOR, width - 1)

turtle.right(60)

draw_tree(length / FACTOR, width - 1)

turtle.left(30)

turtle.color(color)

turtle.width(width)

turtle.backward(length)

开发者ID:johnehunt,项目名称:advancedpython3,代码行数:23,

示例2: gear

​点赞 6

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def gear(count, width, height):

angle = 90-(180/count)

for _ in range(count):

turtle.forward(width)

turtle.left(angle)

turtle.forward(height)

turtle.right(90)

turtle.forward(width)

turtle.right(90)

turtle.forward(height)

turtle.left(angle)

# --- main ---

# clear everything

开发者ID:furas,项目名称:python-examples,代码行数:19,

示例3: draw_pattern_rectangle

​点赞 6

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def draw_pattern_rectangle(x, y, width, height, count, radius, color='red'):

rotation = 360 / count

turtle.goto(x, y)

for _ in range(count):

# move from center to circle

turtle.pu()

#turtle.color('black')

turtle.forward(radius)

turtle.right(90+rotation/2)

draw_rectangle(width, height, color)

# move from circle to center

turtle.pu()

#turtle.color('black')

turtle.left(90+rotation/2)

turtle.backward(radius)

# rotate in circle

turtle.right(rotation)

开发者ID:furas,项目名称:python-examples,代码行数:24,

示例4: draw_pattern_circle

​点赞 6

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def draw_pattern_circle(x, y, r, count, radius, color='red'):

rotation = 360 / count

turtle.goto(x, y)

for _ in range(count):

# move from center to circle

#turtle.pu()

turtle.color('black')

turtle.forward(radius)

turtle.right(90)

draw_circle(r, color)

# move from circle to center

#turtle.pu()

turtle.color('black')

turtle.left(90)

turtle.backward(radius)

# rotate in circle

turtle.right(rotation)

开发者ID:furas,项目名称:python-examples,代码行数:24,

示例5: createClock

​点赞 5

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def createClock(radius):

turtle.reset()

turtle.pensize(7)

for i in range(60):

move(radius)

if i % 5 == 0:

turtle.forward(20)

move(-radius-20)

else:

turtle.dot(5)

move(-radius)

turtle.right(6)

开发者ID:CharlesPikachu,项目名称:Tools,代码行数:14,

示例6: startTick

​点赞 5

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def startTick(second_hand, minute_hand, hour_hand, printer):

today = datetime.datetime.today()

second = today.second + today.microsecond * 1e-6

minute = today.minute + second / 60.

hour = (today.hour + minute / 60) % 12

# 设置朝向

second_hand.setheading(6 * second)

minute_hand.setheading(6 * minute)

hour_hand.setheading(12 * hour)

turtle.tracer(False)

printer.forward(65)

printer.write(getWeekday(today), align='center', font=("Courier", 14, "bold"))

printer.forward(120)

printer.write('12', align='center', font=("Courier", 14, "bold"))

printer.back(250)

printer.write(getDate(today), align='center', font=("Courier", 14, "bold"))

printer.back(145)

printer.write('6', align='center', font=("Courier", 14, "bold"))

printer.home()

printer.right(92.5)

printer.forward(200)

printer.write('3', align='center', font=("Courier", 14, "bold"))

printer.left(2.5)

printer.back(400)

printer.write('9', align='center', font=("Courier", 14, "bold"))

printer.home()

turtle.tracer(True)

# 100ms调用一次

turtle.ontimer(lambda: startTick(second_hand, minute_hand, hour_hand, printer), 100)

开发者ID:CharlesPikachu,项目名称:Tools,代码行数:31,

示例7: draw_branch

​点赞 5

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def draw_branch(size):

""" Draw an individual branch on a snowflake """

side_branch_size = size / 3

for _ in range(3):

for i in range(3):

turtle.forward(side_branch_size)

turtle.backward(side_branch_size)

turtle.right(45)

turtle.left(90)

turtle.backward(side_branch_size)

turtle.left(45)

turtle.right(90)

开发者ID:johnehunt,项目名称:advancedpython3,代码行数:14,

示例8: draw_square

​点赞 5

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def draw_square(size):

""" Function to draw a square """

turtle.forward(size)

turtle.right(90)

turtle.forward(size)

turtle.right(90)

turtle.forward(size)

turtle.right(90)

turtle.forward(size)

开发者ID:johnehunt,项目名称:advancedpython3,代码行数:11,

示例9: draw_square

​点赞 5

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def draw_square(size):

""" Draw a square in the current direction """

turtle.forward(size)

turtle.right(90)

turtle.forward(size)

turtle.right(90)

turtle.forward(size)

turtle.right(90)

turtle.forward(size)

开发者ID:johnehunt,项目名称:advancedpython3,代码行数:11,

示例10: draw_1

​点赞 5

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [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,

示例11: draw_2

​点赞 5

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [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,

示例12: turn_right

​点赞 5

# 需要导入模块: import turtle [as 别名]

# 或者: from turtle import right [as 别名]

def turn_right(width, step, draw):

for _ in range(4):

draw(width, step)

turtle.right(90)

# --- main ---

# clear everything

开发者ID:furas,项目名称:python-examples,代码行数:10,

注:本文中的turtle.right方法示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值