我有一个带有椭圆的组。Group 围绕任意点旋转(通过将 Rotate 实例添加到 Groups 变换)。如何找出椭圆(中心)改变的距离(x 和 y)?椭圆的中心属性不会改变,因为变换应用于组。
我猜这可以通过数学方式解决,也可以通过玩弄 Group/Ellipse 上的变换实例来解决,但是,在这两个领域我都没有太多的专业知识,似乎也没有得出正确的结果。
import javafx.animation.Transition;
import javafx.application.Application;
import javafx.beans.property.DoubleProperty;
import javafx.scene.Group;
import javafx.scene.GroupBuilder;
import javafx.scene.Scene;
import javafx.scene.SceneBuilder;
import javafx.scene.layout.Pane;
import javafx.scene.layout.PaneBuilder;
import javafx.scene.shape.Ellipse;
import javafx.scene.shape.EllipseBuilder;
import javafx.scene.shape.Rectangle;
import javafx.scene.shape.RectangleBuilder;
import javafx.scene.transform.Rotate;
import javafx.scene.transform.RotateBuilder;
import javafx.stage.Stage;
import javafx.util.Duration;
public class Main extends Application {
@Override
public void start(Stage stage) throws Exception {
Ellipse e = EllipseBuilder.create().centerX(110).centerY(110).radiusX(5).radiusY(5).style("-fx-fill: green;").build();
Rectangle r = RectangleBuilder.create().x(100).y(100).width(30).height(30).style("-fx-fill: red;").build();
Group group = GroupBuilder.create().children(r, e).build();
Ellipse pivot = EllipseBuilder.create().centerX(60).centerY(100).radiusX(2).radiusY(2).style("-fx-fill: purple;").build();
Pane p = PaneBuilder.create().children(group, pivot).build();
Scene scene = SceneBuilder.create().root(p).width(200).height(200).build();
stage.setScene(scene);
stage.show();
final Rotate rotate = RotateBuilder.create().pivotX(pivot.getCenterX()).pivotY(pivot.getCenterY()).build();
group.getTransforms().add(rotate);
RotationTransition trans = new RotationTransition(rotate.angleProperty());
trans.playFromStart();
}
class RotationTransition extends Transition {
private final DoubleProperty angle;
public RotationTransition(DoubleProperty angle) {
this.angle = angle;
setCycleDuration(Duration.seconds(5));
}
@Override
protected void interpolate(double frac) {
angle.setValue(frac * 60);
}
}
public static void main(String[] args) {
launch(args);
}
}
上面的代码显示了一个旋转的动画。如何找出绿色椭圆在旋转后改变的 x 和 y 距离?或者,同样,我如何找出椭圆的新坐标?