Skip to content

Commit eebf763

Browse files
committed
Improve code format
1 parent 2ffc73b commit eebf763

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/de/bluecolored/bluemap/core/map/mask/EllipseMask.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public boolean test(int x, int y, int z) {
5858
}
5959

6060
public boolean testXZ(double x, double z) {
61-
x = x - center.getX();
62-
z = z - center.getY();
61+
x -= center.getX();
62+
z -= center.getY();
6363
return (x * x) / radiusSquaredX + (z * z) / radiusSquaredZ <= 1.0;
6464
}
6565

0 commit comments

Comments
 (0)