コード例 #1
0
ファイル: _svg.py プロジェクト: mccoyn/SkeinFactory
def processXMLElement(xmlElement):
	"Process the xml element."
	svgReader = svg_reader.SVGReader()
	svgReader.parseSVGByXMLElement(xmlElement)
	path.convertProcessXMLElementRenameByPaths(getGeometryOutputBySVGReader(svgReader, xmlElement), xmlElement)
コード例 #2
0
ファイル: _svg.py プロジェクト: lImbus/giseburt-ReplicatorG
def processXMLElement(xmlElement):
	"Process the xml element."
	svgReader = svg_reader.SVGReader()
	svgReader.parseSVGByXMLElement(xmlElement)
	path.convertProcessXMLElementRenameByPaths(getGeometryOutputBySVGReader(svgReader, xmlElement), xmlElement)
コード例 #3
0
ファイル: text.py プロジェクト: GottfriedSp/ReplicatorG
def processXMLElement(xmlElement):
    "Process the xml element."
    path.convertProcessXMLElementRenameByPaths(getGeometryOutput(None, xmlElement), xmlElement)
コード例 #4
0
def processXMLElement(xmlElement):
    "Process the xml element."
    derivation = SVGDerivation()
    derivation.setToXMLElement(xmlElement)
    path.convertProcessXMLElementRenameByPaths(
        getGeometryOutput(derivation, xmlElement), xmlElement)
コード例 #5
0
def processXMLElement(xmlElement):
    "Process the xml element."
    path.convertProcessXMLElementRenameByPaths(
        getGeometryOutput(None, xmlElement), xmlElement)
コード例 #6
0
ファイル: _svg.py プロジェクト: AKAMEDIASYSTEM/ReplicatorG
def processXMLElement(xmlElement):
	"Process the xml element."
	derivation = SVGDerivation()
	derivation.setToXMLElement(xmlElement)
	path.convertProcessXMLElementRenameByPaths(getGeometryOutput(derivation, xmlElement), xmlElement)