本文整理汇总了Python中cairo.LINE_CAP_BUTT属性的典型用法代码示例。如果您正苦于以下问题:Python cairo.LINE_CAP_BUTT属性的具体用法?Python cairo.LINE_CAP_BUTT怎么用?Python cairo.LINE_CAP_BUTT使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类cairo
的用法示例。
在下文中一共展示了cairo.LINE_CAP_BUTT属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: draw_head
# 需要导入模块: import cairo [as 别名]
# 或者: from cairo import LINE_CAP_BUTT [as 别名]
def draw_head(self, context, port):
offset = self._head_offset(port)
length = self._head_length(port)
cr = context.cairo
cr.move_to(offset, 0)
cr.line_to(offset + length, 0)
cr.set_source_rgba(*self._arrow_color)
cr.set_line_width(self._calc_line_width(port))
cr.set_line_cap(LINE_CAP_BUTT)
cr.stroke()
示例2: draw_tail
# 需要导入模块: import cairo [as 别名]
# 或者: from cairo import LINE_CAP_BUTT [as 别名]
def draw_tail(self, context, port):
offset = self._head_offset(port)
length = self._head_length(port)
cr = context.cairo
cr.move_to(offset, 0)
cr.line_to(offset + length, 0)
cr.set_source_rgba(*self._arrow_color)
cr.set_line_width(self._calc_line_width(port))
cr.set_line_cap(LINE_CAP_BUTT)
cr.stroke()
示例3: draw
# 需要导入模块: import cairo [as 别名]
# 或者: from cairo import LINE_CAP_BUTT [as 别名]
def draw(self, cr, highlight_items=None):
if highlight_items is None:
highlight_items = ()
cr.set_source_rgba(0.0, 0.0, 0.0, 1.0)
cr.set_line_cap(cairo.LINE_CAP_BUTT)
cr.set_line_join(cairo.LINE_JOIN_MITER)
for shape in self.shapes:
shape.draw(cr)
for edge in self.edges:
edge.draw(cr, highlight=(edge in highlight_items))
for node in self.nodes:
node.draw(cr, highlight=(node in highlight_items))