|
@@ -347,7 +347,7 @@ public class LodGenerator {
|
|
|
if (tri.isMalformed()) {
|
|
|
if (!tri.isRemoved) {
|
|
|
if (logger.isLoggable(Level.FINE)) {
|
|
|
- logger.log(Level.FINE, "malformed triangle found with ID:{0}\n{1} It will be excluded from Lod level calculations.", new Object[]{triangleList.indexOf(tri), tri.toString()});
|
|
|
+ logger.log(Level.FINE, "malformed triangle found with ID:{0}\n{1} It will be excluded from LOD calculations.", new Object[]{triangleList.indexOf(tri), tri.toString()});
|
|
|
}
|
|
|
tri.isRemoved = true;
|
|
|
indexCount -= 3;
|
|
@@ -369,7 +369,7 @@ public class LodGenerator {
|
|
|
if (!vertex.edges.isEmpty()) {
|
|
|
computeVertexCollapseCost(vertex);
|
|
|
} else {
|
|
|
- logger.log(Level.FINE, "Found isolated vertex {0} It will be excluded from Lod level calculations.", vertex);
|
|
|
+ logger.log(Level.FINE, "Found isolated vertex {0} It will be excluded from LOD calculations.", vertex);
|
|
|
}
|
|
|
}
|
|
|
// assert (vertexList.size() == collapseCostSet.size());
|
|
@@ -746,7 +746,7 @@ public class LodGenerator {
|
|
|
tri.isRemoved = true;
|
|
|
indexCount -= 3;
|
|
|
if (logger.isLoggable(Level.FINE)) {
|
|
|
- logger.log(Level.FINE, "duplicate triangle found{0}{1} It will be excluded from Lod level calculations.", new Object[]{tri, duplicate});
|
|
|
+ logger.log(Level.FINE, "duplicate triangle found{0}{1} It will be excluded from LOD level calculations.", new Object[]{tri, duplicate});
|
|
|
}
|
|
|
}
|
|
|
}
|