Exemplo n.º 1
0
Arquivo: path.py Projeto: Aeva/SFACT
	def addXMLInnerSection(self, depth, output):
		'Add the xml section for this object.'
		if self.matrix4X4 is not None:
			self.matrix4X4.addXML(depth, output)
		xml_simple_writer.addXMLFromVertexes(depth, output, self.vertexes)
Exemplo n.º 2
0
	def addXMLSection(self, depth, output):
		'Add the xml section for this object.'
		xml_simple_writer.addXMLFromVertexes( depth, output, self.vertexes )
		xml_simple_writer.addXMLFromObjects( depth, self.faces, output )
Exemplo n.º 3
0
 def addXMLInnerSection(self, depth, output):
     'Add the xml section for this object.'
     if self.matrix4X4 != None:
         self.matrix4X4.addXML(depth, output)
     xml_simple_writer.addXMLFromVertexes(depth, output, self.vertexes)
Exemplo n.º 4
0
	def addXMLSection(self, depth, output):
		'Add the xml section for this object.'
		xml_simple_writer.addXMLFromVertexes( depth, output, self.vertexes )
		xml_simple_writer.addXMLFromObjects( depth, self.faces, output )