Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. public void zoom(ScrollEvent scrollEvent) {
  2.  
  3.         if (scrollEvent.getDeltaY() < 0) {
  4.             zoomLevel -= 0.01;
  5.         } else {
  6.             zoomLevel += 0.01;
  7.         }
  8.         plancheDeJeuHockey.setScaleX(zoomLevel);
  9.         plancheDeJeuHockey.setScaleY(zoomLevel);
  10.         pourcentageZoom.setText(new DecimalFormat("###.##").format(zoomLevel * 100) + "%");
  11.  
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement