Package javafx.scene

Examples of javafx.scene.Group.opacityProperty()


   * @return the indicator/hand
   */
  protected final Group createIndicator(final Group gaugeParent, final double pointDistance,
      final ObjectProperty<Paint> fillProperty, final DoubleProperty opacityProperty) {
    final Group indicator = new Group();
    Bindings.bindBidirectional(indicator.opacityProperty(), opacityProperty);
    indicator.setCache(true);
    indicator.setCacheHint(CacheHint.ROTATE);
    final DropShadow handDropShadow = new DropShadow();
    handDropShadow.setOffsetX(4);
    handDropShadow.setOffsetY(4);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.