- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我试图将 19 行代码汇总到一个 for 循环中,但我感到有点困惑。我问的原因是因为我希望网格为其他尺寸而不是 5。
在 Main::drawHexGridAdvanced()
中,我试图推断出每一行之间的相似性,而不是在我进行硬编码的 Main::drawHexGridBasic()
中值(value)观。
我不确定如何确定每一行中每一列的 x
的开始,因为 n == 5
的模式是 0, -1 -2 -2 -2
之后每个连续的列都只是递增,除非循环到达中途点...
`n` must be odd
n | columns-per row sequence
--+-------------------------
3 | 2 3 2
5 | 3 4 5 4 3
7 | 4 5 6 7 6 5 4
9 | 5 6 7 8 9 8 7 6 5
int[] columns(int n) {
int[] columns = new int[n];
int h = (int) java.lang.Math.floor(n / 2);
for (int i = 0; i < n; i++) {
columns[i] = n - java.lang.Math.abs(i - h);
}
return columns;
}
// Prints [5, 6, 7, 8, 9, 8, 7, 6, 5]
System.out.println(java.util.Arrays.toString(columns(n)));
Python 看起来优雅多了:
def hex(n):
for x in [(n-abs(x-int(n/2))) for x in range(n)]:
for y in range(n-x):
print(' '),
for y in range(x):
print(' * '),
print('')
hex(5)
# * * *
# * * * *
# * * * * *
# * * * *
# * * *
这是我的预期输出:
主.java
package Foo.Bar.Hexagon;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Stroke;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class Main extends JPanel {
private static final long serialVersionUID = 1L;
private final int WIDTH = 1200;
private final int HEIGHT = 800;
private final int W2 = WIDTH / 2;
private final int H2 = HEIGHT / 2;
private Font font = new Font("Arial", Font.BOLD, 24);
FontMetrics metrics;
public Main() {
setPreferredSize(new Dimension(WIDTH, HEIGHT));
}
@Override
public void paintComponent(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
g2d.setStroke(new BasicStroke(4.0f, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER));
g2d.setFont(font);
metrics = g.getFontMetrics();
drawCircle(g2d, W2, H2, 660, true, true, 0x4488FF, 0);
drawHexGridAdvanced(g2d, 5, 60);
}
private void drawHexGridAdvanced(Graphics g, int n, int r) {
double ang30 = Math.toRadians(30);
double xOff = Math.cos(ang30) * r;
double yOff = Math.sin(ang30) * r;
int h = n / 2;
int cols = 0;
int row = 0;
int col = 0;
cols = 3;
row = 0; col = 0;
drawHex(g, +0, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 - yOff * (n - cols) * 3), r);
row = 0; col = 1;
drawHex(g, +1, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 - yOff * (n - cols) * 3), r);
row = 0; col = 2;
drawHex(g, +2, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 - yOff * (n - cols) * 3), r);
cols = 4;
row = 1; col = 0;
drawHex(g, -1, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 - yOff * (n - cols) * 3), r);
row = 1; col = 1;
drawHex(g, +0, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 - yOff * (n - cols) * 3), r);
row = 1; col = 2;
drawHex(g, +1, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 - yOff * (n - cols) * 3), r);
row = 1; col = 3;
drawHex(g, +2, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 - yOff * (n - cols) * 3), r);
cols = 5;
row = 2; col = 0;
drawHex(g, -2, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 2; col = 1;
drawHex(g, -1, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 2; col = 2;
drawHex(g, +0, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 2; col = 3;
drawHex(g, +1, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 2; col = 4;
drawHex(g, +2, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
cols = 4;
row = 3; col = 0;
drawHex(g, -2, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 3; col = 1;
drawHex(g, -1, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 3; col = 2;
drawHex(g, +0, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 3; col = 3;
drawHex(g, +1, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
cols = 3;
row = 4; col = 0;
drawHex(g, -2, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 4; col = 1;
drawHex(g, -1, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
row = 4; col = 2;
drawHex(g, +0, -h + row, (int) (W2 + xOff * (-cols + (col * 2 + 1))), (int) (H2 + yOff * (n - cols) * 3), r);
}
private void drawHexGridBasic(Graphics g, int n, int r) {
double ang30 = Math.toRadians(30);
double xOff = Math.cos(ang30) * r;
double yOff = Math.sin(ang30) * r;
int h = n / 2;
drawHex(g, +0, -2, W2 - (int) (xOff * 2), H2 - (int) (yOff * 6), r);
drawHex(g, +1, -2, W2 - (int) (xOff * 0), H2 - (int) (yOff * 6), r);
drawHex(g, +2, -2, W2 + (int) (xOff * 2), H2 - (int) (yOff * 6), r);
drawHex(g, -1, -1, W2 - (int) (xOff * 3), H2 - (int) (yOff * 3), r);
drawHex(g, +0, -1, W2 - (int) (xOff * 1), H2 - (int) (yOff * 3), r);
drawHex(g, +1, -1, W2 + (int) (xOff * 1), H2 - (int) (yOff * 3), r);
drawHex(g, +2, -1, W2 + (int) (xOff * 3), H2 - (int) (yOff * 3), r);
drawHex(g, -2, +0, W2 - (int) (xOff * 4), H2 - (int) (yOff * 0), r);
drawHex(g, -1, +0, W2 - (int) (xOff * 2), H2 - (int) (yOff * 0), r);
drawHex(g, +0, +0, W2 - (int) (xOff * 0), H2 - (int) (yOff * 0), r);
drawHex(g, +1, +0, W2 + (int) (xOff * 2), H2 - (int) (yOff * 0), r);
drawHex(g, +2, +0, W2 + (int) (xOff * 4), H2 - (int) (yOff * 0), r);
drawHex(g, -2, +1, W2 - (int) (xOff * 3), H2 + (int) (yOff * 3), r);
drawHex(g, -1, +1, W2 - (int) (xOff * 1), H2 + (int) (yOff * 3), r);
drawHex(g, +0, +1, W2 + (int) (xOff * 1), H2 + (int) (yOff * 3), r);
drawHex(g, +1, +1, W2 + (int) (xOff * 3), H2 + (int) (yOff * 3), r);
drawHex(g, -2, +2, W2 - (int) (xOff * 2), H2 + (int) (yOff * 6), r);
drawHex(g, -1, +2, W2 - (int) (xOff * 0), H2 + (int) (yOff * 6), r);
drawHex(g, +0, +2, W2 + (int) (xOff * 2), H2 + (int) (yOff * 6), r);
}
private void drawHex(Graphics g, int posX, int posY, int x, int y, int r) {
Hexagon hex = new Hexagon(x, y, r);
String text = String.format("%s : %s", coord(posX), coord(posY));
int w = metrics.stringWidth(text);
int h = metrics.getHeight();
g.setColor(new Color(0x008844));
g.fillPolygon(hex);
g.setColor(new Color(0xFFDD88));
g.drawPolygon(hex);
g.setColor(new Color(0xFFFFFF));
g.drawString(text, x - w/2, y + h/2);
}
private String coord(int value) {
return (value > 0 ? "+" : "") + Integer.toString(value);
}
public void drawCircle(Graphics2D g, int x, int y, int diameter,
boolean centered, boolean filled, int colorValue, int lineThickness) {
drawOval(g, x, y, diameter, diameter, centered, filled, colorValue, lineThickness);
}
public void drawOval(Graphics2D g, int x, int y, int width, int height,
boolean centered, boolean filled, int colorValue, int lineThickness) {
// Store before changing.
Stroke tmpS = g.getStroke();
Color tmpC = g.getColor();
g.setColor(new Color(colorValue));
g.setStroke(new BasicStroke(lineThickness, BasicStroke.CAP_ROUND,
BasicStroke.JOIN_ROUND));
int x2 = centered ? x - (width / 2) : x;
int y2 = centered ? y - (height / 2) : y;
if (filled)
g.fillOval(x2, y2, width, height);
else
g.drawOval(x2, y2, width, height);
// Set values to previous when done.
g.setColor(tmpC);
g.setStroke(tmpS);
}
public static void main(String[] args) {
JFrame f = new JFrame();
Main p = new Main();
f.setContentPane(p);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);
}
}
Haxagon.java
package Foo.Bar.Hexagon;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.Point;
import java.awt.Polygon;
import java.awt.Stroke;
public class Hexagon extends Polygon {
private static final long serialVersionUID = 1L;
public static final int SIDES = 6;
private Point[] points = new Point[SIDES];
private Point center = new Point(0, 0);
private int radius;
private int rotation = 90;
public Hexagon(Point center, int radius) {
npoints = SIDES;
xpoints = new int[SIDES];
ypoints = new int[SIDES];
this.center = center;
this.radius = radius;
updatePoints();
}
public Hexagon(int x, int y, int radius) {
this(new Point(x, y), radius);
}
public int getRadius() {
return radius;
}
public void setRadius(int radius) {
this.radius = radius;
updatePoints();
}
public int getRotation() {
return rotation;
}
public void setRotation(int rotation) {
this.rotation = rotation;
updatePoints();
}
public void setCenter(Point center) {
this.center = center;
updatePoints();
}
public void setCenter(int x, int y) {
setCenter(new Point(x, y));
}
private double findAngle(double fraction) {
return fraction * Math.PI * 2 + Math.toRadians((rotation + 180) % 360);
}
private Point findPoint(double angle) {
int x = (int) (center.x + Math.cos(angle) * radius);
int y = (int) (center.y + Math.sin(angle) * radius);
return new Point(x, y);
}
protected void updatePoints() {
for (int p = 0; p < SIDES; p++) {
double angle = findAngle((double) p / SIDES);
Point point = findPoint(angle);
xpoints[p] = point.x;
ypoints[p] = point.y;
points[p] = point;
System.out.printf("%d. (%d, %d)\n", p, point.x, point.y);
}
}
public void drawPolygon(Graphics2D g, int x, int y, int lineThickness, int colorValue, boolean filled) {
// Store before changing.
Stroke tmpS = g.getStroke();
Color tmpC = g.getColor();
g.setColor(new Color(colorValue));
g.setStroke(new BasicStroke(lineThickness, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER));
if (filled)
g.fillPolygon(xpoints, ypoints, npoints);
else
g.drawPolygon(xpoints, ypoints, npoints);
// Set values to previous when done.
g.setColor(tmpC);
g.setStroke(tmpS);
}
}
最佳答案
我已经弄明白了,感谢反馈Tanmay .
我注意到 n - cols
的 y 偏移量不正确应该是 row - half
反而。
以下是我可以获得的最全面、最紧凑的代码。虽然最好为大小输入一个奇数,但您也可以输入一个正值。我还在偏移量中添加了一个填充。
这个 if 条件语句仍然困扰着我:int xLbl = row < half ? col - row : col - half;
private void drawHexGridLoop(Graphics g, Point origin, int size, int radius, int padding) {
double ang30 = Math.toRadians(30);
double xOff = Math.cos(ang30) * (radius + padding);
double yOff = Math.sin(ang30) * (radius + padding);
int half = size / 2;
for (int row = 0; row < size; row++) {
int cols = size - java.lang.Math.abs(row - half);
for (int col = 0; col < cols; col++) {
int xLbl = row < half ? col - row : col - half;
int yLbl = row - half;
int x = (int) (origin.x + xOff * (col * 2 + 1 - cols));
int y = (int) (origin.y + yOff * (row - half) * 3);
drawHex(g, xLbl, yLbl, x, y, radius);
}
}
}
主.java
import java.awt.*;
import javax.swing.*;
public class Main extends JPanel {
private static final long serialVersionUID = 1L;
private final int WIDTH = 1200;
private final int HEIGHT = 800;
private Font font = new Font("Arial", Font.BOLD, 18);
FontMetrics metrics;
public Main() {
setPreferredSize(new Dimension(WIDTH, HEIGHT));
}
@Override
public void paintComponent(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
Point origin = new Point(WIDTH / 2, HEIGHT / 2);
g2d.setStroke(new BasicStroke(4.0f, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER));
g2d.setFont(font);
metrics = g.getFontMetrics();
drawCircle(g2d, origin, 380, true, true, 0x4488FF, 0);
drawHexGridLoop(g2d, origin, 7, 50, 8);
}
private void drawHexGridLoop(Graphics g, Point origin, int size, int radius, int padding) {
double ang30 = Math.toRadians(30);
double xOff = Math.cos(ang30) * (radius + padding);
double yOff = Math.sin(ang30) * (radius + padding);
int half = size / 2;
for (int row = 0; row < size; row++) {
int cols = size - java.lang.Math.abs(row - half);
for (int col = 0; col < cols; col++) {
int xLbl = row < half ? col - row : col - half;
int yLbl = row - half;
int x = (int) (origin.x + xOff * (col * 2 + 1 - cols));
int y = (int) (origin.y + yOff * (row - half) * 3);
drawHex(g, xLbl, yLbl, x, y, radius);
}
}
}
private void drawHex(Graphics g, int posX, int posY, int x, int y, int r) {
Graphics2D g2d = (Graphics2D) g;
Hexagon hex = new Hexagon(x, y, r);
String text = String.format("%s : %s", coord(posX), coord(posY));
int w = metrics.stringWidth(text);
int h = metrics.getHeight();
hex.draw(g2d, x, y, 0, 0x008844, true);
hex.draw(g2d, x, y, 4, 0xFFDD88, false);
g.setColor(new Color(0xFFFFFF));
g.drawString(text, x - w/2, y + h/2);
}
private String coord(int value) {
return (value > 0 ? "+" : "") + Integer.toString(value);
}
public void drawCircle(Graphics2D g, Point origin, int radius,
boolean centered, boolean filled, int colorValue, int lineThickness) {
// Store before changing.
Stroke tmpS = g.getStroke();
Color tmpC = g.getColor();
g.setColor(new Color(colorValue));
g.setStroke(new BasicStroke(lineThickness, BasicStroke.CAP_ROUND,
BasicStroke.JOIN_ROUND));
int diameter = radius * 2;
int x2 = centered ? origin.x - radius : origin.x;
int y2 = centered ? origin.y - radius : origin.y;
if (filled)
g.fillOval(x2, y2, diameter, diameter);
else
g.drawOval(x2, y2, diameter, diameter);
// Set values to previous when done.
g.setColor(tmpC);
g.setStroke(tmpS);
}
public static void main(String[] args) {
JFrame f = new JFrame();
Main p = new Main();
f.setContentPane(p);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);
}
}
Hexagon.java
import java.awt.*;
public class Hexagon extends Polygon {
private static final long serialVersionUID = 1L;
public static final int SIDES = 6;
private Point[] points = new Point[SIDES];
private Point center = new Point(0, 0);
private int radius;
private int rotation = 90;
public Hexagon(Point center, int radius) {
npoints = SIDES;
xpoints = new int[SIDES];
ypoints = new int[SIDES];
this.center = center;
this.radius = radius;
updatePoints();
}
public Hexagon(int x, int y, int radius) {
this(new Point(x, y), radius);
}
public int getRadius() {
return radius;
}
public void setRadius(int radius) {
this.radius = radius;
updatePoints();
}
public int getRotation() {
return rotation;
}
public void setRotation(int rotation) {
this.rotation = rotation;
updatePoints();
}
public void setCenter(Point center) {
this.center = center;
updatePoints();
}
public void setCenter(int x, int y) {
setCenter(new Point(x, y));
}
private double findAngle(double fraction) {
return fraction * Math.PI * 2 + Math.toRadians((rotation + 180) % 360);
}
private Point findPoint(double angle) {
int x = (int) (center.x + Math.cos(angle) * radius);
int y = (int) (center.y + Math.sin(angle) * radius);
return new Point(x, y);
}
protected void updatePoints() {
for (int p = 0; p < SIDES; p++) {
double angle = findAngle((double) p / SIDES);
Point point = findPoint(angle);
xpoints[p] = point.x;
ypoints[p] = point.y;
points[p] = point;
}
}
public void draw(Graphics2D g, int x, int y, int lineThickness, int colorValue, boolean filled) {
// Store before changing.
Stroke tmpS = g.getStroke();
Color tmpC = g.getColor();
g.setColor(new Color(colorValue));
g.setStroke(new BasicStroke(lineThickness, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER));
if (filled)
g.fillPolygon(xpoints, ypoints, npoints);
else
g.drawPolygon(xpoints, ypoints, npoints);
// Set values to previous when done.
g.setColor(tmpC);
g.setStroke(tmpS);
}
}
关于java - 生成带坐标系的六边形网格的算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20734438/
我正在编写一个具有以下签名的 Java 方法。 void Logger(Method method, Object[] args); 如果一个方法(例如 ABC() )调用此方法 Logger,它应该
我是 Java 新手。 我的问题是我的 Java 程序找不到我试图用作的图像文件一个 JButton。 (目前这段代码什么也没做,因为我只是得到了想要的外观第一的)。这是我的主课 代码: packag
好的,今天我在接受采访,我已经编写 Java 代码多年了。采访中说“Java 垃圾收集是一个棘手的问题,我有几个 friend 一直在努力弄清楚。你在这方面做得怎么样?”。她是想骗我吗?还是我的一生都
我的 friend 给了我一个谜语让我解开。它是这样的: There are 100 people. Each one of them, in his turn, does the following
如果我将使用 Java 5 代码的应用程序编译成字节码,生成的 .class 文件是否能够在 Java 1.4 下运行? 如果后者可以工作并且我正在尝试在我的 Java 1.4 应用程序中使用 Jav
有关于why Java doesn't support unsigned types的问题以及一些关于处理无符号类型的问题。我做了一些搜索,似乎 Scala 也不支持无符号数据类型。限制是Java和S
我只是想知道在一个 java 版本中生成的字节码是否可以在其他 java 版本上运行 最佳答案 通常,字节码无需修改即可在 较新 版本的 Java 上运行。它不会在旧版本上运行,除非您使用特殊参数 (
我有一个关于在命令提示符下执行 java 程序的基本问题。 在某些机器上我们需要指定 -cp 。 (类路径)同时执行java程序 (test为java文件名与.class文件存在于同一目录下) jav
我已经阅读 StackOverflow 有一段时间了,现在我才鼓起勇气提出问题。我今年 20 岁,目前在我的家乡(罗马尼亚克卢日-纳波卡)就读 IT 大学。足以介绍:D。 基本上,我有一家提供簿记应用
我有 public JSONObject parseXML(String xml) { JSONObject jsonObject = XML.toJSONObject(xml); r
我已经在 Java 中实现了带有动态类型的简单解释语言。不幸的是我遇到了以下问题。测试时如下代码: def main() { def ks = Map[[1, 2]].keySet()
一直提示输入 1 到 10 的数字 - 结果应将 st、rd、th 和 nd 添加到数字中。编写一个程序,提示用户输入 1 到 10 之间的任意整数,然后以序数形式显示该整数并附加后缀。 public
我有这个 DownloadFile.java 并按预期下载该文件: import java.io.*; import java.net.URL; public class DownloadFile {
我想在 GUI 上添加延迟。我放置了 2 个 for 循环,然后重新绘制了一个标签,但这 2 个 for 循环一个接一个地执行,并且标签被重新绘制到最后一个。 我能做什么? for(int i=0;
我正在对对象 Student 的列表项进行一些测试,但是我更喜欢在 java 类对象中创建硬编码列表,然后从那里提取数据,而不是连接到数据库并在结果集中选择记录。然而,自从我这样做以来已经很长时间了,
我知道对象创建分为三个部分: 声明 实例化 初始化 classA{} classB extends classA{} classA obj = new classB(1,1); 实例化 它必须使用
我有兴趣使用 GPRS 构建车辆跟踪系统。但是,我有一些问题要问以前做过此操作的人: GPRS 是最好的技术吗?人们意识到任何问题吗? 我计划使用 Java/Java EE - 有更好的技术吗? 如果
我可以通过递归方法反转数组,例如:数组={1,2,3,4,5} 数组结果={5,4,3,2,1}但我的结果是相同的数组,我不知道为什么,请帮助我。 public class Recursion { p
有这样的标准方式吗? 包括 Java源代码-测试代码- Ant 或 Maven联合单元持续集成(可能是巡航控制)ClearCase 版本控制工具部署到应用服务器 最后我希望有一个自动构建和集成环境。
我什至不知道这是否可能,我非常怀疑它是否可能,但如果可以,您能告诉我怎么做吗?我只是想知道如何从打印机打印一些文本。 有什么想法吗? 最佳答案 这里有更简单的事情。 import javax.swin
我是一名优秀的程序员,十分优秀!