本文整理汇总了Python中canoepaddle.pen.Pen.line_to方法的典型用法代码示例。如果您正苦于以下问题:Python Pen.line_to方法的具体用法?Python Pen.line_to怎么用?Python Pen.line_to使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类canoepaddle.pen.Pen
的用法示例。
在下文中一共展示了Pen.line_to方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_arc_line_half_illegal_joint
# 需要导入模块: from canoepaddle.pen import Pen [as 别名]
# 或者: from canoepaddle.pen.Pen import line_to [as 别名]
def test_arc_line_half_illegal_joint():
p = Pen()
p.stroke_mode(1.0)
p.move_to((0, 0))
p.line_to((1, 0))
p.turn_to(180 - 15)
p.arc_to((-1, 0))
line, arc = p.last_path().segments
assert line.end_joint_illegal
assert arc.start_joint_illegal
assert_path_data(
p, 2,
(
'M0.00,-0.50 L0.00,0.50 L2.93,0.50 '
'A 4.36,4.36 0 0 0 -1.13,-0.48 L-0.87,0.48 '
'A 3.36,3.36 0 0 1 0.87,0.48 L1.00,-0.50 L0.00,-0.50 z'
)
)
p = Pen()
p.stroke_mode(1.0)
p.move_to((-1, 0))
p.turn_to(15)
p.arc_to((1, 0))
p.line_to((0, 0))
arc, line = p.paper.paths[0].segments
assert arc.end_joint_illegal
assert line.start_joint_illegal
assert_path_data(
p, 2,
(
'M-1.13,-0.48 L-0.87,0.48 A 3.36,3.36 0 0 1 0.87,0.48 '
'L1.00,-0.50 L0.00,-0.50 L0.00,0.50 L2.93,0.50 '
'A 4.36,4.36 0 0 0 -1.13,-0.48 z'
)
)