Exemplo n.º 1
0
	def __init__(self, x, y, z = -1):
		self.x = x
		self.y = y
		self.z = z
		GeomNode.__init__(self)
		self._createGeometry()
Exemplo n.º 2
0
 def __init__(self, x, y, z=-1):
     self.x = x
     self.y = y
     self.z = z
     GeomNode.__init__(self)
     self._createGeometry()
Exemplo n.º 3
0
	def __init__(self, name, left, bottom, z = -1):
			self.left = left
			self.bottom = bottom
			self.z = z
			GeomNode.__init__(self, name)
			self.reconstruct()