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)
Example #2
0
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)
Example #4
0
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)