当前位置: 首页>>代码示例>>Python>>正文


Python cairo.LINE_CAP_BUTT属性代码示例

本文整理汇总了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() 
开发者ID:DLR-RM,项目名称:RAFCON,代码行数:12,代码来源:line.py

示例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() 
开发者ID:DLR-RM,项目名称:RAFCON,代码行数:12,代码来源:line.py

示例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)) 
开发者ID:krintoxi,项目名称:NoobSec-Toolkit,代码行数:16,代码来源:xdot.py


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