gpt4 book ai didi

java - 如何剪线?

转载 作者:行者123 更新时间:2023-12-02 12:18:35 25 4
gpt4 key购买 nike

这是我的以下代码:

 public void start(Stage primaryStage) throws Exception {
Pane pane = new Pane();
Scene scene = new Scene(pane, 500, 500);
Line line = new Line(0, 200, 500, 200);

line.setStrokeWidth(2);
line.setStroke(Color.RED);
pane.getChildren().add(line);
primaryStage.setScene(scene);
primaryStage.show();

}

它输出一条线,但我想剪辑该线。例如:如果我有一条从 (0, 200) 开始并在 (500, 200) 结束的线,那么我想将其从 (200, 200) 剪辑到 (400, 200)。有什么办法可以剪掉线吗?任何帮助表示赞赏!谢谢。

最佳答案

如果剪辑确实是您想要做的(您没有告诉我们您的真实用例),我仍然倾向于使用 Sedrick 已在其代码中显示但由于某种原因注释掉的解决方案。每个形状都有一个 setClip 方法,那么为什么不使用它呢?

import javafx.application.Application;
import javafx.geometry.Bounds;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Line;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;


public class LineChartSample extends Application {

int clickCount = 0;

@Override public void start(Stage stage) {
Pane pane = new Pane();
Scene scene = new Scene(pane, 500, 500);
Line line = new Line(0, 200, 500, 200);

line.setStrokeWidth(2);
line.setStroke(Color.RED);

Bounds b = line.getBoundsInParent();
System.out.println(b);

pane.getChildren().add(line);

pane.setOnMouseClicked((event)->{
++clickCount;
double d = clickCount*20.0;
Rectangle clipRect = new Rectangle(b.getMinX() + d, b.getMinY(), b.getWidth() - 2*d, b.getHeight());
line.setClip(clipRect);
});

stage.setWidth(700);
stage.setScene(scene);
stage.show();
}

public static void main(String[] args) {
launch(args);
}
}

关于java - 如何剪线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45977579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com