{"id":18978256,"url":"https://github.com/autodesk/animx","last_synced_at":"2026-03-14T13:19:52.993Z","repository":{"id":44569363,"uuid":"85007441","full_name":"Autodesk/animx","owner":"Autodesk","description":"A project to make it easier for people to use Maya animation in their tools and pipelines.","archived":false,"fork":false,"pushed_at":"2024-06-12T15:23:15.000Z","size":44,"stargazers_count":215,"open_issues_count":5,"forks_count":31,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-07-09T01:04:17.248Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Autodesk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-03-14T23:29:33.000Z","updated_at":"2025-06-07T13:43:01.000Z","dependencies_parsed_at":"2024-11-08T15:36:40.977Z","dependency_job_id":null,"html_url":"https://github.com/Autodesk/animx","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Autodesk/animx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Autodesk%2Fanimx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Autodesk%2Fanimx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Autodesk%2Fanimx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Autodesk%2Fanimx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Autodesk","download_url":"https://codeload.github.com/Autodesk/animx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Autodesk%2Fanimx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264373756,"owners_count":23598078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T15:32:48.785Z","updated_at":"2026-03-14T13:19:47.967Z","avatar_url":"https://github.com/Autodesk.png","language":"C++","readme":"# AnimX Animation Library\n\nThis library provides a set of function to calculate animation curve values in the exact same way as Maya. \nThe library's main goal is to replicate interpolation schemes found in Maya. While an interface is provided to Maya's animation curves, curve storage, serialization, etc. is delegated to the client code. A python-based test suite is included to demonstrate how to use the library and ease validation against Maya.\n\n# Building the Library\n\nWith the exception of cmake, which is used to ease building and deploying the library on different platforms, this library has no dependencies. The library does not require Maya and will build with many compilers. If you would like to use the included test suite (to validate the library generates the same answers as Maya), you should use a compiler that's compatible with the Maya version validating against. Please consult the Maya documentation for details and guidance about which compiler to use. \n\nOnce you've downloaded cmake on your machine and have confirmed it's on the system path, you should be set. \n\nNote that you should specify a Maya version you have installed on your machine in order to have the test suite properly configured. In the below examples 2017 is used but valid values include also 2016, 2015 etc.\n\n## OSX \u0026 Linux\nOpen a terminal and type:\n\n```\nmkdir build; cd build\ncmake -DMAYA_VERSION=2017 ..\ncmake --build . --config Release\n```\n\n## Windows\nOpen a command prompt and type:\n\n```\nmkdir build; cd build\ncmake -G \"Visual Studio 14 2015 Win64\" -DMAYA_VERSION=2017 ..\n```\n\nNote: By default this library assumes you're using the same 64-bit scheme to encode time used by Maya. If you plan to use the library with a version of Maya before Maya 2017 update 3, define the symbol MAYA_64BIT_TIME_PRECISION when building the library. For example, linux and OSX users would issue the command:\n```\ncmake -DMAYA_VERSION=2016 -DMAYA_64BIT_TIME_PRECISION=0 ..\n```\nwhen following the steps described above.\n\nOnce built copy plugins and animation library DLL to the directory of your choice.\n\n# Installation\n\nAfter building the library, you can copy the generated binaries and python test scripts to a directory of your choosing by running:\n```\ncmake --install -DCMAKE_INSTALL_PREFIX=Path/to/destination ..\n```\nor for OSX \u0026 Linux as part of the build step (assuming CMAKE_INSTALL_PREFIX was already set):\n```\ncmake --build . --config Release --target install\n```\n\nLibraries will be placed directly at the destination folder while the scripts will go into a /scripts subfolder.\n\n# Usage\n\nTo test the library inside Maya, two python scripts are included inside /tests/maya/scripts folder.\n\n## Testing with Maya plugin\n\nLoad generated AnimXPlugin.mll plugin inside Maya and then source pyplugin.py script.\nTo launch an automatic test suite that will generate random curves and iterate over all tangents, interpolation and infinity modes, use\n\n```python\ntestCurves()\n```\n\n## Testing with animation library\n\nInstead of loading the plugin, you can also use pydll.py script. First specify the paths to both the animation library dll and the plugin mll in the script and then load it inside Maya. This script will load the dlls and call their interface functions directly.\nTo launch an automatic test suite, use\n\n```python\ntestCurves()\n```\n\nNote: On Windows for this script to work, Maya's PATH variable must contain the path to the directory with compiled AnimX.dll. It can be set inside Maya.env file like so:\n```\nPATH = C:/Path/to/directory\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fautodesk%2Fanimx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fautodesk%2Fanimx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fautodesk%2Fanimx/lists"}