本文整理汇总了Java中javafx.scene.Node.setRotate方法的典型用法代码示例。如果您正苦于以下问题:Java Node.setRotate方法的具体用法?Java Node.setRotate怎么用?Java Node.setRotate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.Node
的用法示例。
在下文中一共展示了Node.setRotate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: calculateAndRotatoNodes
import javafx.scene.Node; //导入方法依赖的package包/类
private void calculateAndRotatoNodes(List<Node> nodes, double alp, double bet, double gam) {
double A11 = Math.cos(alp) * Math.cos(gam);
double A12 = Math.cos(bet) * Math.sin(alp) + Math.cos(alp) * Math.sin(bet) * Math.sin(gam);
double A13 = Math.sin(alp) * Math.sin(bet) - Math.cos(alp) * Math.cos(bet) * Math.sin(gam);
double A21 = -Math.cos(gam) * Math.sin(alp);
double A22 = Math.cos(alp) * Math.cos(bet) - Math.sin(alp) * Math.sin(bet) * Math.sin(gam);
double A23 = Math.cos(alp) * Math.sin(bet) + Math.cos(bet) * Math.sin(alp) * Math.sin(gam);
double A31 = Math.sin(gam);
double A32 = -Math.cos(gam) * Math.sin(bet);
double A33 = Math.cos(bet) * Math.cos(gam);
double d = Math.acos((A11 + A22 + A33 - 1d) / 2d);
if (!ObjectUtils.equalsDoublePrecision(d, 0.0)) {
double den = 2d * Math.sin(d);
Point3D p = new Point3D((A32 - A23) / den, (A13 - A31) / den, (A21 - A12) / den);
for (Node node : nodes) {
node.setRotationAxis(p);
node.setRotate(Math.toDegrees(d));
}
}
}
示例2: draw
import javafx.scene.Node; //导入方法依赖的package包/类
protected void draw (Node node, Drawable sprite) {
Coordinate location = sprite.getLocation();
node.relocate(getScale().scale(location.getX()) -
sprite.getDrawer().getGraphic().getHeight().get() / 2,
getScale().scale(location.getY()) - sprite.getDrawer().getGraphic()
.getHeight().get() / 2);
node.setScaleX(getScale().getScale());
node.setScaleY(getScale().getScale());
node.setVisible(sprite.getDrawer().isVisible());
node.setRotate(sprite.getOrientation());
}