В настоящее время я создаю программу, в которой вы создаете созвездие, и человек вводит координаты X и Y, чтобы получить звезду или звезды на холсте. Мой главный вопрос - как мне установить линию для соединения с каждой отдельной точкой пользователя? входы, следовательно, создание созвездия. Я попытался сделать какое-то время и цикл for для отдельных попыток, но это не сработало, и я в итоге запутался. Мне просто нужен кто-то, кто скажет мне, как это сделать или почему это работает.
Вся помощь приветствуется, пожалуйста, и спасибо, также код будет внизу + изображение того, на что это похоже, когда я его запускаю, я нарисовал линию, чтобы показать, как это должно выглядеть (https://imgur.com/18VbFPO)
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.paint.Color;
import javafx.scene.shape.ArcType;
import javafx.scene.text.Font;
import javafx.stage.Stage;
import java.awt.*;
import java.lang.Math;
import java.util.Scanner;
import static javafx.application.Application.launch;
public class constellation extends Application {
@Override
public void start(Stage Stage) throws Exception
{
Group root = new Group();
Scene Scene = new Scene(root);
Canvas canvas= new Canvas(500,500);
root.getChildren().add(canvas);
Stage.setScene(Scene);
GraphicsContext gc = canvas.getGraphicsContext2D();
gc.setFill(Color.BLACK);
gc.fillRect(0,0,500,500);
int max = 500;
int min = 1;
int maxx = 5;
int minn = 1;
int range = max - min + 1;
int rangee = maxx - minn + 1;
for (int i = 0 ; i <= 250; i++)
{
int randnum = (int)(Math.random() * range) + min;
int randnum2 = (int)(Math.random() * range) + min;
int randnum3 = (int)(Math.random() * rangee) + minn;
int randnum4 = (int)(Math.random() * rangee) + minn;
gc.setFill(Color.WHITE);
gc.fillOval(randnum,randnum2,randnum3,randnum4);
Stage.show();
}
Scanner sc = new Scanner(System.in);
System.out.println("Welcome to the Constellation Simulator(Press any key to continue)");
String looper = "";
while (true) {
double count = 0;
double x ;
double y ;
System.out.println("Hello please enter a X and Y coordinate(s)[enter 'STOP' when you are done with inputting stars]");
looper = sc.nextLine();
if(looper.equalsIgnoreCase("stop")){break;}
x = Double.parseDouble(looper);
y = Double.parseDouble(sc.nextLine());
if ((x >500)|| (y > 500)){
System.out.println("Sorry Invalid input restart the program and re enter your coordinates (500 MAX)");
System.exit(0);
}
if ((x < 0)||(y < 0)){
System.out.println("Sorry Invalid input, you cannot enter value(s) less than 0");
System.exit(0);
}
Stage.setTitle("Constellation Simulator");
gc.setFill(Color.YELLOW);
gc.fillRect(x,y,10,10);
gc.setStroke(Color.RED);
gc.strokeLine(x,y,x,y);
}
System.out.println("Please enter your constellation name");
String constname = sc.nextLine();
gc.setFill(Color.PAPAYAWHIP);
gc.setFont(new Font("Papyrus",50));
gc.fillText(constname,300,450);
gc.setFill(Color.INDIANRED);
gc.setFont(new Font("Papyrus",15));
gc.fillText("-By Alexei Ougriniouk",300,470);
Stage.show();
}
public static void main(String[] args) {
launch(args);
}
}