how to get the coordinates of a transformed shape in javafx2?

妖精的绣舞 提交于 2020-01-21 23:42:52

问题


I have 2 ellipses on a pane, one has a rotation transformation applied to it (the rotation point not being the ellipse itself obviously :)), the other doesn't. Now I need to draw a line from the center of the transformed ellipse to the center of the untransformed ellipse. So I need the coordinates of the transformed ellipse, is there a way to retrieve those? (I need them for other calculations besides the line drawing too)


回答1:


Use localToParent method. Example:

    @Override
    public void start(Stage stage) {
        stage.setTitle(VersionInfo.getRuntimeVersion());
        Group root = new Group();

        // ellypsis with center in 100,100
        Arc ellypsis = ArcBuilder.create().centerX(100).centerY(100).length(360).radiusX(100).radiusY(50).fill(Color.TRANSPARENT).stroke(Color.RED).build();
        // rotate
        ellypsis.getTransforms().add(new Rotate(50, 50, 45));

        // find out where is 100,100 in rotated ellypsis
        Point2D localToParent = ellypsis.localToParent(100,100);

        // draw line from that point
        Line line = new Line(localToParent.getX(), localToParent.getY(), 200, 200);
        root.getChildren().addAll(ellypsis, line);
        stage.setScene(new Scene(root, 300, 250));
        stage.show();
    }



回答2:


Given the lack of code provided in the question, I will give you a mathematical answer :)

Say you have ellipse1 which center is X1 and elipse2 which center is X2. The transformation gives you the following

elipse1 --> f(elipse1) = elipse1'

if you want to know the transformed ellipse ellipse1' center coordinates (X1') just do the following:

X1 --> f(X1) = X1` 

So, in a nutshell, just apply the same transformation to your orginal point X1 and you will get the transformed coordinates X1'. Now all what you have to do is draw a line from X1' to X2



来源:https://stackoverflow.com/questions/11300868/how-to-get-the-coordinates-of-a-transformed-shape-in-javafx2

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!