-3
我用下面的代碼來做一個圓。我需要做一個按鈕來保存圓的座標。我如何提取這些座標?如何將strokeOval()形狀保存爲文本文件?
GraphicsContext gc = canvas.getGraphicsContext2D();
gc.setStroke(Color.BLUE);
Random rnd = new Random();
int x = rnd.nextInt((int) canvas.getWidth());
int y = rnd.nextInt((int) canvas.getHeight());
gc.strokeRect(x, y, 100, 100);
請注意,您的問題相當廣泛,這導致我發佈了一個非常廣泛的(和社區維基)答案。如果您需要更具體的幫助,請提高您的問題的具體含義以及包括您目前正在嘗試的內容。 –