CheckTools/README.md
2024-10-01 19:48:12 +08:00

45 lines
1.2 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# CheckTools
Mesh/UV check commands for maya
## [meshChecker](https://github.com/minoue/CheckTools/blob/master/meshChecker/)
Mesh/Topology checker
## [uvChecker](https://github.com/minoue/CheckTools/blob/master/uvChecker/)
General UV checker
## [findUvOverlaps](https://github.com/minoue/CheckTools/blob/master/uvOverlapChecker/)
UV overlap checker based on the BentleyOttmann algorithm
⚠️ **Warning** ⚠️
* Be sure to check if a mesh has no **unassigned UVs**, otherwise maya clashes.
## GUI
[ModelCheckerForMaya](https://github.com/minoue/ModelCheckerForMaya)
## Build
### Build requirements
C++11
### Linux/MacOS
```
>git clone https://github.com/minoue/CheckTools
>cd CheckTools
>mkdir build
>cd build
>cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DMAYA_VERSION=2020 -DMAYA_ROOT_DIR=path_to_maya_directory ../
>cmake --build . --config Release --target install
```
### Windows
eg. VS2019 and Maya2020
```
>git clone https://github.com/minoue/CheckTools
>cd CheckTools
>mkdir build
>cd build
>cmake -G "Visual Studio 16 2019" -DMAYA_VERSION=2020 -DMAYA_ROOT_DIR="C:\Program Files\Autodesk\Maya2020" ../
>cmake --build . --config Release --target install
```