本文整理汇总了Python中Polygon.Polygon.translate方法的典型用法代码示例。如果您正苦于以下问题:Python Polygon.translate方法的具体用法?Python Polygon.translate怎么用?Python Polygon.translate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Polygon.Polygon
的用法示例。
在下文中一共展示了Polygon.translate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: of
# 需要导入模块: from Polygon import Polygon [as 别名]
# 或者: from Polygon.Polygon import translate [as 别名]
# The left foot is also an ellipse with center point of (200,50), major
# axis is 20, and minor axis is 5.
img.blit( Ellipse(200,50,20,5).fill( Color(0, 255, 0) ) )
# The flag is constructed as such:
# The pole is a line with start and end points of (100,125) and (100,50).
line1 = Line(100, 125, 100, 50)
# The flag is a polygon with vertex points of (100,125), (100,95), and
# (60,110)
polygon1 = Polygon([(100,125), (100,95), (60,110)]).fill( Color(128, 0, 128) )
# The pole and flag are translated by (0,35), in order to fit in the right
# hand of the stick figure.
line1.translate(0,35)
polygon1.translate(0,35)
# The pole and flag are rotated by 45 degrees for a fix point of (100,100),
# so the flag and pole are tilted in the right hand of the stick figure.
line1.rotate(100,100,45)
polygon1.rotate(100,100,45)
# The pole and flag are scaled by 1.25 in the x and y values for a fix
# point of (100,100), to be larger in the right hand of the stick figure.
line1.scale(100,100,1.25,1.25)
polygon1.scale(100,100,1.25,1.25)
# Blit Rest
img.blit( line1 )
img.blit( polygon1 )