X-Git-Url: http://git.megacz.com/?p=anneal.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fqfat%2FMesh.java;h=d3e85f96f49eeb54cc9db84e6a29619c5c596652;hp=3696c0b08edaac6de85308baab9cae90939861fa;hb=ac8d105459510ce29771c83cd87de7954b964bd1;hpb=23f01b5c0cdf4fa78e3b2582ad23648b55290586 diff --git a/src/edu/berkeley/qfat/Mesh.java b/src/edu/berkeley/qfat/Mesh.java index 3696c0b..d3e85f9 100644 --- a/src/edu/berkeley/qfat/Mesh.java +++ b/src/edu/berkeley/qfat/Mesh.java @@ -236,12 +236,12 @@ public class Mesh implements Iterable { if (nearest_in_other_mesh == null) { if (score_against != null) { Vert ne = score_against.nearest(p); - oldscore = ne.fundamentalQuadric().preAndPostMultiply(p) * 100 * 3; + oldscore = ne.fundamentalQuadric().preAndPostMultiply(p) * 100 * 10; } else { oldscore = 0; } } else { - oldscore = nearest_in_other_mesh.fundamentalQuadric().preAndPostMultiply(p) * 100 * 3; + oldscore = nearest_in_other_mesh.fundamentalQuadric().preAndPostMultiply(p) * 100 * 10; } } else { oldscore = (quadric.preAndPostMultiply(p) * 100) / quadric_count;