Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(network): Ensure negative coords less than tol read as 0 and not -0
It seems like the "signed zero" issue is a little more complex than I thought given that you can have coordinate values like -0.002 and +0.002. Both of these should get a value of 0 in their coordinates hash if the tolerance is 0.01. But one will get a singed zero (-0) unless we do an extra check for this.
- Loading branch information