优化尺寸输出代码
This commit is contained in:
parent
9b7917aa14
commit
c3f4c6f502
@ -33,13 +33,13 @@ public class DominionSizeInfo {
|
||||
Integer z2 = dominion.getZ2();
|
||||
View view = View.create();
|
||||
view.title("领地 " + dominion.getName() + " 的尺寸信息")
|
||||
.subtitle("领地归属:" + owner.getLastKnownName())
|
||||
.addLine(Line.create().append("领地大小:").append((x2 - x1) + " x" + (y2 - y1) + " x" + (z2 - z1)))
|
||||
.subtitle("领地所有者:" + owner.getLastKnownName())
|
||||
.addLine(Line.create().append("领地大小:").append(dominion.getWidthX() + " x " + dominion.getHeight() + " x " + dominion.getWidthZ()))
|
||||
.addLine(Line.create().append("中心坐标:").append((x1 + (x2 - x1) / 2) + " " + (y1 + (y2 - y1) / 2) + " " + (z1 + (z2 - z1) / 2)))
|
||||
.addLine(Line.create().append("垂直高度:").append(String.valueOf(y2 - y1)))
|
||||
.addLine(Line.create().append("垂直高度:").append(String.valueOf(dominion.getHeight())))
|
||||
.addLine(Line.create().append("Y轴坐标:").append(y1 + " ~ " + y2))
|
||||
.addLine(Line.create().append("水平面积:").append(String.valueOf((x2 - x1) * (z2 - z1))))
|
||||
.addLine(Line.create().append("领地体积:").append(String.valueOf((x2 - x1) * (y2 - y1) * (z2 - z1))))
|
||||
.addLine(Line.create().append("水平面积:").append(String.valueOf(dominion.getSquare())))
|
||||
.addLine(Line.create().append("领地体积:").append(String.valueOf(dominion.getVolume())))
|
||||
.addLine(Line.create().append("传送点坐标:").append(
|
||||
dominion.getTpLocation() == null ?
|
||||
"无" :
|
||||
|
Reference in New Issue
Block a user