本文整理汇总了Python中actor.Actor.shape方法的典型用法代码示例。如果您正苦于以下问题:Python Actor.shape方法的具体用法?Python Actor.shape怎么用?Python Actor.shape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类actor.Actor
的用法示例。
在下文中一共展示了Actor.shape方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: register
# 需要导入模块: from actor import Actor [as 别名]
# 或者: from actor.Actor import shape [as 别名]
def register():
ghost = [
(-7, -7), # 0
(-7.0, 0.0),# 1
(-5, -5), # 22
(-6.7, 2.0),# 2
(-3, -7), # 21
(-5.9, 3.8),# 3
(-1, -7), # 20
(-4.6, 5.3),# 4
(-1, -5), # 19
(-2.9, 6.4),# 5
(1, -5), # 18
(-1.0, 6.9),# 6
(3, -7), # 16
(1.0, 6.9), # 7
(5, -5), # 15
(2.9, 6.4), # 8
(7, -7), # 14
(4.6, 5.3), # 9
(7.0, 0.0), # 13
(4.6, 5.3), # 10
(6.7, 2.0), # 12
(5.9, 3.8), # 11
]
s = Shape([
Primitive(ghost, Color.black).offset(+200, +105),
Primitive(ghost, Color.orange).offset(+300, +200),
Rect(100, 100, 120, 200, Color.red).offset(100, 200),
Rect(100, 100, 120, 200, Color.red).rotate(10).offset(200, 600)
])
g = Actor()
g.shape = s
g.tick = tick
# TODO : prevent identical name conflict
# TODO : retiurn many
return([g])