本文整理汇总了Python中nodebox.graphics.Path.line方法的典型用法代码示例。如果您正苦于以下问题:Python Path.line方法的具体用法?Python Path.line怎么用?Python Path.line使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nodebox.graphics.Path
的用法示例。
在下文中一共展示了Path.line方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: line_angle
# 需要导入模块: from nodebox.graphics import Path [as 别名]
# 或者: from nodebox.graphics.Path import line [as 别名]
def line_angle(position, angle, distance):
p = Path()
x1, y1 = coordinates(position.x, position.y, distance, angle)
p.line(position.x, position.y, x1, y1)
p.strokeColor = Color.BLACK
p.strokeWidth = 1
return p
示例2: parse_line
# 需要导入模块: from nodebox.graphics import Path [as 别名]
# 或者: from nodebox.graphics.Path import line [as 别名]
def parse_line(e):
x1 = float(get_attribute(e, "x1"))
y1 = float(get_attribute(e, "y1"))
x2 = float(get_attribute(e, "x2"))
y2 = float(get_attribute(e, "y2"))
p = Path()
p.line(x1, y1, x2, y2)
return p
示例3: line
# 需要导入模块: from nodebox.graphics import Path [as 别名]
# 或者: from nodebox.graphics.Path import line [as 别名]
def line(point1, point2):
p = Path()
p.line(point1.x, point1.y, point2.x, point2.y)
p.strokeColor = Color.BLACK
p.strokeWidth = 1
return p