コード例 #1
0
	def addXMLSection( self, depth, output ):
		"Add the xml section for this object."
		xml_simple_writer.addXMLFromVertices( depth, output, self.vertices )
		xml_simple_writer.addXMLFromObjects( depth, self.faces, output )
コード例 #2
0
ファイル: path.py プロジェクト: clothbot/DotSkeinforge
	def addXMLInnerSection( self, depth, output ):
		"Add the xml section for this object."
		if self.matrix4X4 != None:
			self.matrix4X4.addXML( depth, output )
		xml_simple_writer.addXMLFromVertices( depth, output, self.vertices )
コード例 #3
0
ファイル: path.py プロジェクト: aliensr85/Skeinforge-Mirror
 def addXMLInnerSection(self, depth, output):
     "Add the xml section for this object."
     if self.matrix4X4 != None:
         self.matrix4X4.addXML(depth, output)
     xml_simple_writer.addXMLFromVertices(depth, output, self.vertices)
コード例 #4
0
 def addXMLSection(self, depth, output):
     "Add the xml section for this object."
     xml_simple_writer.addXMLFromVertices(depth, output, self.vertices)
     xml_simple_writer.addXMLFromObjects(depth, self.faces, output)