public static void drawBoxTest(double x, double y, double width, double height, double size, Vector4i colors) {
drawMCHorizontalBuilding(x - size / 2, y - size / 2, x + size * 21 / 2, y + size / 2, colors.z, colors.x);
drawMCVerticalBuilding(x - size / 2, y - size / 2, x + size / 2, y + size * 21 / 2, colors.x, colors.z);
drawMCHorizontalBuilding(width - size * 21 / 2, y - size / 2, width + size / 2, y + size / 2, colors.x, colors.z);
drawMCVerticalBuilding(width - size / 2, y - size / 2, width + size / 2, y + size * 21 / 2, colors.z, colors.x);
drawMCHorizontalBuilding(x - size / 2, height - size / 2, x + size * 21 / 2, height + size / 2, colors.x, colors.z);
drawMCVerticalBuilding(x - size / 2, height - size * 21 / 2, x + size / 2, height + size / 2, colors.z, colors.x);
drawMCHorizontalBuilding(width - size * 21 / 2, height - size / 2, width + size / 2, height + size / 2, colors.z, colors.x);
drawMCVerticalBuilding(width - size / 2, height - size * 21 / 2, width + size / 2, height + size / 2, colors.x, colors.z);
}
displayutils.java последняя строка