Skip to content

Instantly share code, notes, and snippets.

View wigma's full-sized avatar

Cros Edgard wigma

  • Paris
View GitHub Profile
@chris-lesage
chris-lesage / build_slerp_ramp.py
Last active January 15, 2025 03:28
Fake a multi-output lerp/slerp ramp in Autodesk Maya using remapValue nodes. Useful for twisting or interpolating objects and attributes.
import pymel.core as pm
"""
Take a collection of attributes and interpolate them along a curve.
It uses a master remapValue that drives multiple remapValues
to simulate the effect of a multi-out curve node.
References to "twist", because it was originally written for twisting ribbon IK
But it can interpolate any custom attributes you wish
Written by Chris Lesage, June 2019
@theodox
theodox / FBX Wrapper.py
Last active December 19, 2021 12:05
FBXWrapper
'''
FBXWrapper
This module provides a python wrapper for every method exposed in the FBX plugin.
The arguments for the calls are the same as for the equivalent mel calls, however they can be passed with typical
python syntax, which is translated to mel-style flags and arguments under the hood. The actual flags and arguments
are documented here:
usage: