2017-07-01 26 views
6

अब तक मैंने जावाएफएक्स एप्लिकेशन को कोड किया है जिसमें कुछ आयताकार घूमते हैं। अब मैं यह जांचने के लिए एक विधि बनाना चाहता हूं कि खिड़की में एक आयताकार अभी भी दिखाई दे रहा है या इससे पहले से बाहर निकल गया है। मेरे कोड इस तरह दिखता है:कैसे जांचें कि आयताकार नोड विंडो में है

import javafx.animation.AnimationTimer; 
import javafx.application.Application; 
import javafx.geometry.Point2D; 
import javafx.scene.Node; 
import javafx.scene.Scene; 
import javafx.scene.layout.Pane; 
import javafx.scene.shape.Rectangle; 
import javafx.stage.Stage; 

public class Test extends Application { 
    private Pane root = new Pane(); 
    private Rectangle rect = new Rectangle(150,150,15,15); 
    private Point2D velocity = new Point2D(2,1); 

    private Pane createContent(){ 
     root.setPrefSize(500,500); 
     root.getChildren().add(rect); 

     AnimationTimer timer = new AnimationTimer() { 
      @Override 
      public void handle(long now) { 
       update(); 
      } 
     }; 
     timer.start(); 

     return root; 
    } 

    private void update(){ 
     if (outOfWindow(rect)) { 
      System.out.println("out of window...\n"); 

     }else { 
      System.out.println("in window...\n"); 
     } 

     rect.setTranslateX(rect.getTranslateX() + velocity.getX()); 
     rect.setTranslateY(rect.getTranslateY() + velocity.getY()); 
    } 

    private boolean outOfWindow(Node node) { 
     if (node.getBoundsInParent().intersects(node.getBoundsInParent().getWidth(), node.getBoundsInParent().getHeight(), 
      root.getPrefWidth() - node.getBoundsInParent().getWidth() * 2, 
      root.getPrefHeight() - node.getBoundsInParent().getHeight() * 2)){ 
      return false; 
     } 
     return true; 
    } 

    @Override 
    public void start(Stage primaryStage) throws Exception { 
     primaryStage.setScene(new Scene(createContent())); 
     primaryStage.show(); 
    } 

    public static void main(String[] args) { 
     launch(args); 
    } 
} 

outOfWindow() विधि आयत की स्थिति खिड़की में अब भी है, तो जाँच करने के लिए मेरे प्रयास है। यह काम करता हैं। लेकिन क्या एक बेहतर तरीका है या यह पता लगाने का एक तरीका है कि आयताकार किनारों की सीमा पार हो गई है?

+0

इससे आपको यह पता मदद कर सकता है - हालांकि इस पर एक 'ScrollPane' और अधिक ध्यान केंद्रित है: https://stackoverflow.com/questions/28701208/javafx-ask-wether-a-node-is-inside -viewport या नहीं – Chris

उत्तर

2

तो एक आयत एक दूसरे के बाहर है यह दो बातें मतलब है:

  • वे
  • बड़ा एक पूरी तरह से शामिल नहीं है छोटी

तो एक दूसरे को काटना नहीं है अपने विधि अगली तरीके से देख सकती है:

private boolean inTheWindow(Rectangle rect) { 
    return rect.getBoundsInParent().intersects(root.getLayoutBounds()) 
     || root.getLayoutBounds().contains(rect.getBoundsInParent()); 
} 

यहां MCVE प्रदर्शन के लिए है दर:

public class FXBounds extends Application { 

    private Pane root; 

    @Override 
    public void start(Stage primaryStage) { 

     root = new Pane(); 

     Scene scene = new Scene(root, 300, 250); 

     primaryStage.setTitle("Hello World!"); 
     primaryStage.setScene(scene); 
     primaryStage.show(); 

     check(1,1,50,50, true); 
     check(100,100,50,50, true); 
     check(-5,-5,30,30, true); 
     check(-50,0,30,30, false); 
    } 

    private void check(int x, int y, int width, int height, boolean in) { 
     Rectangle rect = new Rectangle(x, y, width, height); 
     root.getChildren().add(rect); 
     System.out.println(in == inTheWindow(rect)); 
    } 

    private boolean inTheWindow(Rectangle rect) { 
     return rect.getBoundsInParent().intersects(root.getLayoutBounds()) || root.getLayoutBounds().contains(rect.getBoundsInParent()); 
    } 
} 
संबंधित मुद्दे