mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-30 21:17:53 +01:00
Fix epsilon
This commit is contained in:
parent
e3520f4294
commit
fdaac26e72
@ -17,7 +17,7 @@ public final class Vec implements Point {
|
||||
public static final Vec ZERO = new Vec(0);
|
||||
public static final Vec ONE = new Vec(1);
|
||||
|
||||
public static final double EPSILON = 1E-6;
|
||||
public static final double EPSILON = 0.000001;
|
||||
|
||||
private final double x, y, z;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user