以下是我的以下代码:
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)。 有什么方法可以剪线吗?任何帮助表示赞赏!谢谢。
答案 0 :(得分:1)
如果裁剪真的是你想要做的(你没有告诉我们你真正的用例)我仍然倾向于使用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);
}
}
答案 1 :(得分:0)
我在setEndX
监听器中使用了setOnMouseClicked
来说明这一点。您可能需要进行一些数学计算并同时使用setEndX
和setEndY
来获得所需的结果。
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);
}
}