本文整理汇总了Python中Zone.Zone.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Zone.__init__方法的具体用法?Python Zone.__init__怎么用?Python Zone.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zone.Zone
的用法示例。
在下文中一共展示了Zone.__init__方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from Zone import Zone [as 别名]
# 或者: from Zone.Zone import __init__ [as 别名]
def __init__( self, centroid=(0, 0, 0), size=10.0 ):
self.centroid = Vertex( *centroid )
self.size = float( size )
# generate min and max bounds for zone init
radius = self.size / 2.0
min_bound = Vertex( *[c - radius for c in self.centroid] )
max_bound = Vertex( *[c + radius for c in self.centroid] )
Zone.__init__( self, min_bound, max_bound )
self.selected_color = ( 0.7, 0.0, 0.1, 1.0 )
self.last_color = None
self.specular = ( 1.0, 1.0, 1.0, 1.0 )
self.shininess = 100.0
self.diffuse = ( 0.1, 0.0, 0.7, 1.0 )
示例2: __init__
# 需要导入模块: from Zone import Zone [as 别名]
# 或者: from Zone.Zone import __init__ [as 别名]
def __init__(self):
Zone.__init__(self, "models/maps/toontown_central.egg")
self.setSpawnPoint(0, 18, 4)
self.setSpawnRot(180)
示例3: __init__
# 需要导入模块: from Zone import Zone [as 别名]
# 或者: from Zone.Zone import __init__ [as 别名]
def __init__( self, vertex_a, vertex_b ):
self.vertices = [ vertex_a, vertex_b ]
Zone.__init__( self, *self.generate_bounds() )