UV unwrap: decrease ABF minimum angle, I couldn't find cases where it needs to

be this high, and give better results lower, especially with tesselated ngons.
This commit is contained in:
Brecht Van Lommel
2013-04-18 16:28:31 +00:00
parent 4ad289a22d
commit 8d756ef914

View File

@@ -2297,7 +2297,7 @@ static void p_abf_setup_system(PAbfSystem *sys)
for (i = 0; i < sys->ninterior; i++)
sys->lambdaLength[i] = 1.0;
sys->minangle = 7.5 * M_PI / 180.0;
sys->minangle = 1.0 * M_PI / 180.0;
sys->maxangle = (float)M_PI - sys->minangle;
}