Example usage for javafx.scene.input RotateEvent isDirect

List of usage examples for javafx.scene.input RotateEvent isDirect

Introduction

In this page you can find the example usage for javafx.scene.input RotateEvent isDirect.

Prototype

public final boolean isDirect() 

Source Link

Document

Indicates whether this gesture is caused by a direct or indirect input device.

Usage

From source file:net.rptools.tokentool.controller.TokenTool_Controller.java

@FXML
void compositeTokenPane_OnRotate(RotateEvent event) {
    log.info("isDirect(): " + event.isDirect());
    log.info("getTotalAngle" + event.getTotalAngle());

    double r = portraitImageView.getRotate() + (event.getAngle() * 0.75);
    if (r < -360d || r > 360d)
        r = 0d;// w  ww  .  ja  va  2  s .  co m

    portraitImageView.setRotate(r);
    event.consume();
}