TheWhiteDog9487 e5a1192306 0.1.1
游戏版本1.19.1,功能全部完成
2024-01-20 19:59:29 +08:00

10 lines
275 B
Java

package xyz.thewhitedog9487;
import net.minecraft.util.math.Vec3d;
public class Toolbox {
static public double Distance(Vec3d A, Vec3d B){
return Math.sqrt(
Math.pow(A.getX() - B.getX(), 2) +
Math.pow(A.getY() - B.getY(), 2));}
}