├── .gitignore ├── README.rst ├── mayakit ├── __init__.py ├── callbacks.py ├── ctxmanagers.py ├── curves.py ├── messages.py ├── plugins.py ├── plugins │ ├── __init__.py │ ├── burnin.py │ ├── pointsOnCurve.py │ ├── reorderCurve.py │ ├── resampleCurve.py │ └── textureSampler.py ├── rig.py ├── rivets.py ├── shelf │ ├── __init__.py │ ├── activate_hair_system.png │ ├── add_curves_to_hairSystem.png │ ├── add_curves_to_hairSystem.psd │ ├── align_selected_to_curve.png │ ├── align_selected_to_curve.psd │ ├── blank.png │ ├── create_hair_system.png │ ├── create_strand.png │ ├── create_system.png │ ├── curve_to_strand.png │ ├── strands.png │ └── strands.psd ├── skin.py ├── stitches.py ├── strands.py ├── tags.py ├── tests │ ├── __init__.py │ └── test_textureSampler.py ├── userSetup.py └── utils.py ├── sandbox ├── README.rst ├── make_it_dynamic.py ├── reflib.py ├── replace.py └── sandbox.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/README.rst -------------------------------------------------------------------------------- /mayakit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/__init__.py -------------------------------------------------------------------------------- /mayakit/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/callbacks.py -------------------------------------------------------------------------------- /mayakit/ctxmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/ctxmanagers.py -------------------------------------------------------------------------------- /mayakit/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/curves.py -------------------------------------------------------------------------------- /mayakit/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/messages.py -------------------------------------------------------------------------------- /mayakit/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/plugins.py -------------------------------------------------------------------------------- /mayakit/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayakit/plugins/burnin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/plugins/burnin.py -------------------------------------------------------------------------------- /mayakit/plugins/pointsOnCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/plugins/pointsOnCurve.py -------------------------------------------------------------------------------- /mayakit/plugins/reorderCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/plugins/reorderCurve.py -------------------------------------------------------------------------------- /mayakit/plugins/resampleCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/plugins/resampleCurve.py -------------------------------------------------------------------------------- /mayakit/plugins/textureSampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/plugins/textureSampler.py -------------------------------------------------------------------------------- /mayakit/rig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/rig.py -------------------------------------------------------------------------------- /mayakit/rivets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/rivets.py -------------------------------------------------------------------------------- /mayakit/shelf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/__init__.py -------------------------------------------------------------------------------- /mayakit/shelf/activate_hair_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/activate_hair_system.png -------------------------------------------------------------------------------- /mayakit/shelf/add_curves_to_hairSystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/add_curves_to_hairSystem.png -------------------------------------------------------------------------------- /mayakit/shelf/add_curves_to_hairSystem.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/add_curves_to_hairSystem.psd -------------------------------------------------------------------------------- /mayakit/shelf/align_selected_to_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/align_selected_to_curve.png -------------------------------------------------------------------------------- /mayakit/shelf/align_selected_to_curve.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/align_selected_to_curve.psd -------------------------------------------------------------------------------- /mayakit/shelf/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/blank.png -------------------------------------------------------------------------------- /mayakit/shelf/create_hair_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/create_hair_system.png -------------------------------------------------------------------------------- /mayakit/shelf/create_strand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/create_strand.png -------------------------------------------------------------------------------- /mayakit/shelf/create_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/create_system.png -------------------------------------------------------------------------------- /mayakit/shelf/curve_to_strand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/curve_to_strand.png -------------------------------------------------------------------------------- /mayakit/shelf/strands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/strands.png -------------------------------------------------------------------------------- /mayakit/shelf/strands.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/shelf/strands.psd -------------------------------------------------------------------------------- /mayakit/skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/skin.py -------------------------------------------------------------------------------- /mayakit/stitches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/stitches.py -------------------------------------------------------------------------------- /mayakit/strands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/strands.py -------------------------------------------------------------------------------- /mayakit/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/tags.py -------------------------------------------------------------------------------- /mayakit/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayakit/tests/test_textureSampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/tests/test_textureSampler.py -------------------------------------------------------------------------------- /mayakit/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/userSetup.py -------------------------------------------------------------------------------- /mayakit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/mayakit/utils.py -------------------------------------------------------------------------------- /sandbox/README.rst: -------------------------------------------------------------------------------- 1 | # Some experimental stuff 2 | # Not quite ready to be in mayakit 3 | -------------------------------------------------------------------------------- /sandbox/make_it_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/sandbox/make_it_dynamic.py -------------------------------------------------------------------------------- /sandbox/reflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/sandbox/reflib.py -------------------------------------------------------------------------------- /sandbox/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/sandbox/replace.py -------------------------------------------------------------------------------- /sandbox/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/sandbox/sandbox.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danbradham/mayakit/HEAD/setup.py --------------------------------------------------------------------------------