pick 97420a31d The big reformat of 2020

This commit is contained in:
yueh
2020-06-16 21:41:28 +02:00
parent 5304b3febe
commit 5225ea426b
2252 changed files with 95466 additions and 118582 deletions
+13 -19
View File
@@ -18,29 +18,23 @@
package appeng.util;
import net.minecraft.util.math.Vec3d;
public class LookDirection {
public class LookDirection
{
private final Vec3d a;
private final Vec3d b;
private final Vec3d a;
private final Vec3d b;
public LookDirection(final Vec3d a, final Vec3d b) {
this.a = a;
this.b = b;
}
public LookDirection( final Vec3d a, final Vec3d b )
{
this.a = a;
this.b = b;
}
public Vec3d getA() {
return this.a;
}
public Vec3d getA()
{
return this.a;
}
public Vec3d getB()
{
return this.b;
}
public Vec3d getB() {
return this.b;
}
}