This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Bubble Sort """ | |
import sys | |
import time | |
from random import randint | |
def iterate(items): | |
swapped = False | |
for i in range(len(items)-1): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Remove models with confidence in MotionBuilder 2015 and 2017 """ | |
# Built in | |
# Third Party | |
from pyfbsdk import FBSystem, FBFindModelByLabelName | |
from PySide.QtGui import ( | |
QDialog, | |
QPushButton, | |
QListWidget, | |
QVBoxLayout, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Built in | |
from uuid import uuid4 | |
# Third party | |
from PySide.QtCore import Qt | |
from PySide.QtGui import ( | |
QComboBox, | |
QMainWindow, | |
QVBoxLayout, | |
QPushButton, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Creates a lower limb twist rig. | |
.. module:: rigging.lower_limb_twist_rig | |
:platform: Unix, Linux, Windows | |
.. moduleauthor:: wbondie | |
""" | |
# Built in | |
import logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Creates a upper limb twist rig. | |
.. module:: rigging.upper_limb_twist_rig | |
:platform: Unix, Linux, Windows | |
.. moduleauthor:: wbondie | |
""" | |
# Built in | |
import logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Script to apply joint labeling to existing joint layouts. | |
.. module:: naming.joint_labeler | |
:platform: Unix, Linux, Windows | |
..author:: wbondie | |
""" | |
# Built in | |
import logging |