Skip to content

Commit f1aa7d3

Browse files
committed
lower "full" circle tolerance, to 🔪 transition glitches
1 parent 92e5fe7 commit f1aa7d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/angles.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function rad2deg(rad) { return rad / PI * 180; }
2929
* @return {boolean}
3030
*/
3131
function isFullCircle(aBnds) {
32-
return Math.abs(aBnds[1] - aBnds[0]) > twoPI - 1e-15;
32+
return Math.abs(aBnds[1] - aBnds[0]) > twoPI - 1e-14;
3333
}
3434

3535
/**

0 commit comments

Comments
 (0)