本文整理汇总了Python中app.io.load.GenericLoader.bezier方法的典型用法代码示例。如果您正苦于以下问题:Python GenericLoader.bezier方法的具体用法?Python GenericLoader.bezier怎么用?Python GenericLoader.bezier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app.io.load.GenericLoader
的用法示例。
在下文中一共展示了GenericLoader.bezier方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: bezier
# 需要导入模块: from app.io.load import GenericLoader [as 别名]
# 或者: from app.io.load.GenericLoader import bezier [as 别名]
def bezier(self):
if self.path.len > 1:
if self.path.Node(0) == self.path.Node(-1):
self.path.load_close(1)
self.prop_stack.AddStyle(self.curstyle.Duplicate())
GenericLoader.bezier(self, paths=(self.path,))
self.path = CreatePath()
示例2: bezier
# 需要导入模块: from app.io.load import GenericLoader [as 别名]
# 或者: from app.io.load.GenericLoader import bezier [as 别名]
def bezier(self):
if self.guess_continuity:
self.path.guess_continuity()
if self.path.len > 0:
if self.compound_path is not None:
self.compound_path.append(self.path)
else:
GenericLoader.bezier(self, paths = (self.path,))
self.path = CreatePath()
示例3: end_compound_path
# 需要导入模块: from app.io.load import GenericLoader [as 别名]
# 或者: from app.io.load.GenericLoader import bezier [as 别名]
def end_compound_path(self):
paths = tuple(self.compound_path)
self.compound_path = None
if paths:
# XXX ugly
if self.gradient_geo:
rect = paths[0].accurate_rect()
for path in paths[1:]:
rect = UnionRects(rect, path.accurate_rect())
self.gradient_rect = rect
else:
self.gradient_rect = None
getattr(self, self.compound_render)()
GenericLoader.bezier(self, paths = paths)
示例4: bezier
# 需要导入模块: from app.io.load import GenericLoader [as 别名]
# 或者: from app.io.load.GenericLoader import bezier [as 别名]
def bezier(self):
if self.path.len > 1:
self.prop_stack.AddStyle(self.cur_style.Duplicate())
GenericLoader.bezier(self, paths = (self.path,))
self.path = CreatePath()