From d351a65999b44bd5c81a7b0689166ffb6446a836 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Thu, 20 Nov 2014 12:09:33 -0800 Subject: [PATCH] Increase the smoothing cutoff. --- interface/src/MetavoxelSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/MetavoxelSystem.cpp b/interface/src/MetavoxelSystem.cpp index e5453204ae..afa6d3a7d7 100644 --- a/interface/src/MetavoxelSystem.cpp +++ b/interface/src/MetavoxelSystem.cpp @@ -1346,7 +1346,7 @@ int VoxelAugmentVisitor::visit(MetavoxelInfo& info) { glm::vec3 center; glm::vec3 normals[MAX_NORMALS_PER_VERTEX]; int normalCount = 0; - const float CREASE_COS_NORMAL = glm::cos(glm::radians(40.0f)); + const float CREASE_COS_NORMAL = glm::cos(glm::radians(45.0f)); const int MAX_MATERIALS_PER_VERTEX = 4; quint8 materials[] = { 0, 0, 0, 0 }; glm::vec4 materialWeights;