如何剪线?

How to clip a line?

这是我的以下代码:

 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)。 有什么办法可以剪线吗?任何帮助表示赞赏!谢谢。

我在 setOnMouseClicked 侦听器中使用了 setEndX 来演示这一点。您可能需要做一些计算并使用 setEndXsetEndY 来获得您想要的结果。

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


public class LineChartSample extends Application {

    @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);
        pane.getChildren().add(line);

//        Rectangle clipRect = new Rectangle(line.getBoundsInParent().getWidth(), line.getBoundsInParent().getHeight());
//        line.setClip(clipRect);

        line.setOnMouseClicked((event)->{
            line.setEndX(line.getBoundsInLocal().getWidth() - 100);
        });

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

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

如果裁剪确实是您想要做的(您没有告诉我们您的真实用例),我仍然倾向于使用 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);
    }
}