Normand Briere
2019-08-12 b1d79b74514041a059b454a9f6fc3970773c0cb8
BoundaryRep.java
....@@ -1997,7 +1997,10 @@
19971997 if (v.vertexlinks == null)
19981998 continue;
19991999
2000
- if (v.weights != null && v.weights[j] < 0.001 * v.totalweight) // == 0)
2000
+ // Warning: faster but dangerous
2001
+ if (v.weights != null && v.weights[j]
2002
+ // == 0)
2003
+ < 0.001 * v.totalweight)
20012004 {
20022005 //testweight += v.weights[j-1];
20032006 continue;