本文整理汇总了Python中canoepaddle.pen.Pen.line_to_y方法的典型用法代码示例。如果您正苦于以下问题:Python Pen.line_to_y方法的具体用法?Python Pen.line_to_y怎么用?Python Pen.line_to_y使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类canoepaddle.pen.Pen
的用法示例。
在下文中一共展示了Pen.line_to_y方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_line_to_coordinate
# 需要导入模块: from canoepaddle.pen import Pen [as 别名]
# 或者: from canoepaddle.pen.Pen import line_to_y [as 别名]
def test_line_to_coordinate():
p = Pen()
p.fill_mode()
p.move_to((0, 0))
p.turn_to(45)
p.line_to_y(3)
assert_points_equal(p.position, (3, 3))
for x, y in [
(2, 1),
(3, -4),
(-7, -5),
(-6, 6),
]:
p = Pen()
p.fill_mode()
p.move_to((0, 0))
p.turn_toward((x, y))
p.line_to_y(y * 2)
assert_points_equal(p.position, (x * 2, y * 2))
p.move_to((0, 0))
p.turn_toward((x, y))
p.line_to_x(x * 3)
assert_points_equal(p.position, (x * 3, y * 3))