├── .gitignore ├── LICENSE ├── README.md ├── samples ├── SeExprMesh_maelstorm_v01.ma └── SeExprMesh_wave_deformer_with_SOuP_smooth_v01.ma ├── scripts └── AEseExprMeshTemplate.mel └── src ├── ClosestPointFunc.cpp ├── ClosestPointFunc.h ├── Makefile ├── MeshExpression.h ├── SeExprMeshCmd.cpp ├── SeExprMeshCmd.h ├── SeExprMeshNode.cpp ├── SeExprMeshNode.h └── pluginMain.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/README.md -------------------------------------------------------------------------------- /samples/SeExprMesh_maelstorm_v01.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/samples/SeExprMesh_maelstorm_v01.ma -------------------------------------------------------------------------------- /samples/SeExprMesh_wave_deformer_with_SOuP_smooth_v01.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/samples/SeExprMesh_wave_deformer_with_SOuP_smooth_v01.ma -------------------------------------------------------------------------------- /scripts/AEseExprMeshTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/scripts/AEseExprMeshTemplate.mel -------------------------------------------------------------------------------- /src/ClosestPointFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/ClosestPointFunc.cpp -------------------------------------------------------------------------------- /src/ClosestPointFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/ClosestPointFunc.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/MeshExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/MeshExpression.h -------------------------------------------------------------------------------- /src/SeExprMeshCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/SeExprMeshCmd.cpp -------------------------------------------------------------------------------- /src/SeExprMeshCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/SeExprMeshCmd.h -------------------------------------------------------------------------------- /src/SeExprMeshNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/SeExprMeshNode.cpp -------------------------------------------------------------------------------- /src/SeExprMeshNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/SeExprMeshNode.h -------------------------------------------------------------------------------- /src/pluginMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikomatsu/SeExprMeshMaya/HEAD/src/pluginMain.cpp --------------------------------------------------------------------------------