JavaFX는 2D 개체에 대한 세 가지 작업, 즉 합집합, 빼기를 지원합니다. 및 교차로 .
-
연합 작전 − 이 연산은 두 개 이상의 도형을 입력으로 받아 그 도형이 차지하는 면적을 반환합니다.
-
교차로 작업 − 이 연산은 두 개 이상의 도형을 입력으로 받아 그 사이의 교차 영역을 반환합니다.
-
빼기 연산 − 이 작업은 두 개 이상의 모양을 입력으로 사용합니다. 그런 다음 두 번째 모양과 겹치는 영역을 제외한 첫 번째 모양의 영역을 반환합니다.
예시
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
import javafx.scene.shape.Circle;
import javafx.scene.shape.Shape;
import javafx.scene.text.Font;
import javafx.scene.text.FontPosture;
import javafx.scene.text.FontWeight;
import javafx.scene.text.Text;
public class JavaFXOperations extends Application {
public void start(Stage stage) {
Font font = Font.font("verdana", FontWeight.BOLD, FontPosture.REGULAR, 12);
//Drawing circles for union operation
Circle shape1 = new Circle(65.0f, 135.0f, 50.0f);
Circle shape2 = new Circle(130.0f, 135.0f, 50.0f );
//Union operation
Shape union = Shape.union(shape1, shape2);
union.setFill(Color.RED);
Text label1 = new Text("Union Operation");
label1.setFont(font);
label1.setX(40);
label1.setY(230);
//Drawing circles for union operation
Circle shape3 = new Circle(250.0f, 135.0f, 50.0f);
Circle shape4 = new Circle(325.0f, 135.0f, 50.0f );
//Intersect operation
Shape intersect = Shape.intersect(shape3, shape4);
intersect.setFill(Color.RED);
Text label2 = new Text("Intersect Operation");
label2.setFont(font);
label2.setX(225);
label2.setY(230);
//Drawing circles for union operation
Circle shape5 = new Circle(445.0f, 135.0f, 50.0f);
Circle shape6 = new Circle(510.0f, 135.0f, 50.0f );
//Union operation
Shape subtract = Shape.subtract(shape5, shape6);
subtract.setFill(Color.RED);
Text label3 = new Text("Subtract Operation");
label3.setFont(font);
label3.setX(420);
label3.setY(230);
//Setting the stage
Group root = new Group(
shape1, shape2, shape3, shape4, shape5, shape6,
union, intersect, subtract, label1, label2, label3
);
Scene scene = new Scene(root, 600, 300);
stage.setTitle("2D Operations Example");
stage.setScene(scene);
stage.show();
}
public static void main(String args[]){
launch(args);
}
} 출력
