eliminate unnecessary rounding
This commit is contained in:
parent
1d141e4063
commit
31f5cc4190
1 changed files with 2 additions and 2 deletions
|
|
@ -715,8 +715,8 @@
|
|||
|
||||
// create point map, unique point list and point group arrays
|
||||
input.forEach(function(line) {
|
||||
p1 = cachedPoint(line.p1.round(5));
|
||||
p2 = cachedPoint(line.p2.round(5));
|
||||
p1 = cachedPoint(line.p1);
|
||||
p2 = cachedPoint(line.p2);
|
||||
addConnected(p1,p2);
|
||||
addConnected(p2,p1);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue