コード例 #1
0
def getGeometryOutputByArguments(arguments, xmlElement):
    "Get vector3 vertexes from attribute dictionary by arguments."
    evaluate.setAttributeDictionaryByArguments(['start', 'end', 'step'],
                                               arguments, xmlElement)
    return getGeometryOutput(None, xmlElement)
コード例 #2
0
def getGeometryOutputByArguments(arguments, xmlElement):
    "Get vector3 vertexes from attribute dictionary by arguments."
    evaluate.setAttributeDictionaryByArguments(['radius', 'inclination'],
                                               arguments, xmlElement)
    return getGeometryOutput(None, xmlElement)
コード例 #3
0
ファイル: circle.py プロジェクト: greenarrow/skeinforgeGit
def getGeometryOutputByArguments(arguments, xmlElement):
	"Get vector3 vertexes from attribute dictionary by arguments."
	evaluate.setAttributeDictionaryByArguments(['radius', 'start', 'end', 'revolutions'], arguments, xmlElement)
	return getGeometryOutput(None, xmlElement)
コード例 #4
0
ファイル: text.py プロジェクト: CNCBASHER/skeinforge-1
def getGeometryOutputByArguments(arguments, xmlElement):
    "Get vector3 vertexes from attribute dictionary by arguments."
    evaluate.setAttributeDictionaryByArguments(
        ['text', 'fontSize', 'fontFamily'], arguments, xmlElement)
    return getGeometryOutput(None, xmlElement)
コード例 #5
0
def getGeometryOutputByArguments(arguments, xmlElement):
	'Get vector3 vertexes from attribute dictionary by arguments.'
	evaluate.setAttributeDictionaryByArguments(['length', 'radius'], arguments, xmlElement)
	return getGeometryOutput(None, xmlElement)
コード例 #6
0
def getGeometryOutputByArguments(arguments, xmlElement):
    'Get vector3 vertexes from attribute dictionary by arguments.'
    evaluate.setAttributeDictionaryByArguments(['length', 'radius'], arguments,
                                               xmlElement)
    return getGeometryOutput(None, xmlElement)
コード例 #7
0
ファイル: text.py プロジェクト: Sciumo/SFACT
def getGeometryOutputByArguments(arguments, xmlElement):
	"""Get vector3 vertexes from attribute dictionary by arguments."""
	evaluate.setAttributeDictionaryByArguments(['text', 'fontSize', 'fontFamily'], arguments, xmlElement)
	return getGeometryOutput(None, xmlElement)
コード例 #8
0
def getGeometryOutputByArguments(arguments, xmlElement):
    "Get vector3 vertexes from attribute dictionary by arguments."
    evaluate.setAttributeDictionaryByArguments(["radius", "inclination"], arguments, xmlElement)
    return getGeometryOutput(None, xmlElement)
コード例 #9
0
ファイル: polygon.py プロジェクト: mccoyn/SkeinFactory
def getGeometryOutputByArguments(arguments, xmlElement):
	"Get vector3 vertexes from attribute dictionary by arguments."
	evaluate.setAttributeDictionaryByArguments(['sides', 'radius'], arguments, xmlElement)
	return getGeometryOutput(xmlElement)
コード例 #10
0
def getGeometryOutputByArguments(arguments, xmlElement):
	'Get vector3 vertexes from attribute dictionary by arguments.'
	evaluate.setAttributeDictionaryByArguments(['file', 'start'], arguments, xmlElement)
	return getGeometryOutput(xmlElement)
コード例 #11
0
ファイル: heightmap.py プロジェクト: CNCBASHER/skeinforge-1
def getGeometryOutputByArguments(arguments, xmlElement):
    'Get vector3 vertexes from attribute dictionary by arguments.'
    evaluate.setAttributeDictionaryByArguments(['file', 'start'], arguments,
                                               xmlElement)
    return getGeometryOutput(xmlElement)