├── .gitignore ├── CMakeLists.txt ├── INSTALL.md ├── LICENSE ├── README.md ├── modules ├── CMakeLists.txt └── cameraInferno.mod ├── plug-ins ├── CMakeLists.txt ├── dcCameraInferno.py └── dcVelocity.py ├── presets ├── CMakeLists.txt └── attrPresets │ └── dcCameraInferno │ ├── metric_km_per_hour.mel │ ├── metric_miles_per_hour.mel │ └── usa_measurements.mel ├── python ├── CMakeLists.txt └── dcCameraInferno │ ├── .gitignore │ ├── __init__.py │ ├── constant.py.in │ └── tool.py ├── scripts ├── AEdcCameraInfernoTemplate.mel ├── AEdcVelocityTemplate.mel └── CMakeLists.txt └── tests └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/README.md -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/cameraInferno.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/modules/cameraInferno.mod -------------------------------------------------------------------------------- /plug-ins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/plug-ins/CMakeLists.txt -------------------------------------------------------------------------------- /plug-ins/dcCameraInferno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/plug-ins/dcCameraInferno.py -------------------------------------------------------------------------------- /plug-ins/dcVelocity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/plug-ins/dcVelocity.py -------------------------------------------------------------------------------- /presets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/presets/CMakeLists.txt -------------------------------------------------------------------------------- /presets/attrPresets/dcCameraInferno/metric_km_per_hour.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/presets/attrPresets/dcCameraInferno/metric_km_per_hour.mel -------------------------------------------------------------------------------- /presets/attrPresets/dcCameraInferno/metric_miles_per_hour.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/presets/attrPresets/dcCameraInferno/metric_miles_per_hour.mel -------------------------------------------------------------------------------- /presets/attrPresets/dcCameraInferno/usa_measurements.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/presets/attrPresets/dcCameraInferno/usa_measurements.mel -------------------------------------------------------------------------------- /python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/python/CMakeLists.txt -------------------------------------------------------------------------------- /python/dcCameraInferno/.gitignore: -------------------------------------------------------------------------------- 1 | constant.py 2 | -------------------------------------------------------------------------------- /python/dcCameraInferno/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/dcCameraInferno/constant.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/python/dcCameraInferno/constant.py.in -------------------------------------------------------------------------------- /python/dcCameraInferno/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/python/dcCameraInferno/tool.py -------------------------------------------------------------------------------- /scripts/AEdcCameraInfernoTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/scripts/AEdcCameraInfernoTemplate.mel -------------------------------------------------------------------------------- /scripts/AEdcVelocityTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/scripts/AEdcVelocityTemplate.mel -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/cameraInferno-maya/HEAD/tests/test.py --------------------------------------------------------------------------------