def createParts(): """Create parts of the current selection, based on property values.""" F = checkSelection(single=True) if not F: return name = selection[0] partition.splitProp(F, name)
def createParts(): """Create parts of the current selection, based on property values.""" F = selection.check(single=True) if not F: return name = selection[0] partition.splitProp(F, name)
def splitProp(): """Split the selected object based on property values""" from plugins import partition F = selection.check(single=True) if not F: return name = selection[0] partition.splitProp(F,name)
def splitProp(): """Split the selected object based on property values""" from plugins import partition F = selection.check(single=True) if not F: return name = selection[0] partition.splitProp(F, name)