Updated build script to create win32/linux/macos versions. Fixed the defaults to they work with PLA. Fixed the temperature plugin default "ON" problem. Removed all profiles except for PLA.
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
"""
|
|
Polygon path.
|
|
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
#Init has to be imported first because it has code to workaround the python bug where relative imports don't work if the module is imported as a main module.
|
|
import __init__
|
|
|
|
from fabmetheus_utilities.geometry.geometry_utilities import evaluate
|
|
|
|
|
|
__author__ = 'Enrique Perez (perez_enrique@yahoo.com)'
|
|
__credits__ = 'Art of Illusion <http://www.artofillusion.org/>'
|
|
__date__ = '$Date: 2008/02/05 $'
|
|
__license__ = 'GNU Affero General Public License http://www.gnu.org/licenses/agpl.html'
|
|
|
|
|
|
def processElementNode(elementNode):
|
|
"Process the xml element."
|
|
functions = elementNode.getXMLProcessor().functions
|
|
if len(functions) < 1:
|
|
print('Warning, there are no functions in processElementNode in statement for:')
|
|
print(elementNode)
|
|
return
|
|
function = functions[-1]
|
|
evaluate.setLocalAttribute(elementNode)
|
|
if elementNode.xmlObject.value == None:
|
|
print('Warning, elementNode.xmlObject.value is None in processElementNode in statement for:')
|
|
print(elementNode)
|
|
return
|
|
localValue = evaluate.getEvaluatedExpressionValueBySplitLine(elementNode, elementNode.xmlObject.value)
|
|
keywords = elementNode.xmlObject.key.split('.')
|
|
if len(keywords) == 0:
|
|
print('Warning, there are no keywords in processElementNode in statement for:')
|
|
print(elementNode)
|
|
return
|
|
firstWord = keywords[0]
|
|
if len(keywords) == 1:
|
|
function.localDictionary[firstWord] = localValue
|
|
return
|
|
attributeName = keywords[-1]
|
|
object = None
|
|
if firstWord == 'self':
|
|
object = function.classObject
|
|
else:
|
|
object = function.localDictionary[firstWord]
|
|
for keywordIndex in xrange(1, len(keywords) - 1):
|
|
object = object._getAccessibleAttribute(keywords[keywordIndex])
|
|
object._setAccessibleAttribute(attributeName, localValue)
|