当前位置: 首页>>代码示例>>Java>>正文


Java Node.getScene方法代码示例

本文整理汇总了Java中javafx.scene.Node.getScene方法的典型用法代码示例。如果您正苦于以下问题:Java Node.getScene方法的具体用法?Java Node.getScene怎么用?Java Node.getScene使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javafx.scene.Node的用法示例。


在下文中一共展示了Node.getScene方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: calculateTransformRelativeTo

import javafx.scene.Node; //导入方法依赖的package包/类
/**
 * Calculates the {@link Transform Transformation} from children node coordinates to
 * parent node coordinates.
 * <p>
 * {@code child} must be a direct or indirect child of {@code rootOfCalculation}.
 *
 * @param rootOfCalculation Any node in a scene graph
 * @param child             A direct/indirect child of rootOfCalculation
 * @return A Transformation between coordinates of child and rootOfCalculation
 */
public static Transform calculateTransformRelativeTo(Node rootOfCalculation, Node child) {
    if (child.getScene() == null) {
        throw new IllegalStateException("Child is not displayed in any scene currently.");
    }
    if (child.getParent() == null) {
        throw new IllegalStateException(
                "rootOfCalculation is not in the scenegraph between root node and child.");
    }
    if (child == rootOfCalculation) {
        return new Affine();
    }
    Transform parentTransform = calculateTransformRelativeTo(rootOfCalculation, child.getParent());
    return child.getLocalToParentTransform().createConcatenation(parentTransform);
}
 
开发者ID:VerifAPS,项目名称:stvs,代码行数:25,代码来源:ViewUtils.java

示例2: endSuppressionIfFocusLost

import javafx.scene.Node; //导入方法依赖的package包/类
private static void endSuppressionIfFocusLost(Node node) {
    if (!node.isFocused() && node.getScene() != null && node.getScene().getFocusOwner() != node) {
        node.pseudoClassStateChanged(FOCUS_SUPRESSED_PSEUDO_CLASS, false);
    }
}
 
开发者ID:rmfisher,项目名称:fx-animation-editor,代码行数:6,代码来源:FocusHelper.java

示例3: getScene

import javafx.scene.Node; //导入方法依赖的package包/类
/**
 * Gets scene.
 *
 * @see javafx.scene.Scene
 * @param event
 * @return
 */
public Scene getScene(ActionEvent event) {
    Node source = (Node) event.getSource();
    Scene scene = source.getScene();
    return scene;
}
 
开发者ID:erayerdin,项目名称:primitivefxmvc,代码行数:13,代码来源:GenericController.java


注:本文中的javafx.scene.Node.getScene方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。