Rectangle은 4개의 모서리가 있는 닫힌 다각형이고 두 모서리 사이의 각도는 직각이고 반대쪽은 동시입니다. 높이와 너비, 각각 세로 및 가로 길이로 정의됩니다.
JavaFX에서 Rectangle은 javafx.scene.shape.Rectangle로 표현됩니다. 수업. 이 클래스에는 다음과 같은 네 가지 속성이 포함되어 있습니다. -
-
높이 − 이 속성은 원 중심의 x 좌표를 나타내며 setHeight()를 사용하여 이 속성에 값을 설정할 수 있습니다. 방법.
-
너비 − 이 속성은 원 중심의 y 좌표를 나타내며 setWidth()를 사용하여 이 속성에 값을 설정할 수 있습니다. 방법.
-
x − 원의 반경(픽셀 단위), setRadius()를 사용하여 이 속성에 값을 설정할 수 있습니다. 방법.
-
예 − 원의 반경(픽셀 단위), setRadius()를 사용하여 이 속성에 값을 설정할 수 있습니다. 방법
직사각형을 만들려면 다음을 수행해야 합니다.
-
Rectangle 클래스를 인스턴스화합니다.
-
setter 메서드를 사용하거나 생성자에 대한 인수로 무시하여 필요한 속성을 설정합니다.
-
생성된 노드(모양)를 Group 개체에 추가합니다.
예
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.Rectangle; public class DrawinRectangle extends Application { public void start(Stage stage) { //Drawing a Rectangle Rectangle shape = new Rectangle(); //Setting the properties of the rectangle shape.setX(150.0f); shape.setY(75.0f); shape.setWidth(300.0f); shape.setHeight(150.0f); //Setting other properties shape.setFill(Color.DARKCYAN); shape.setStrokeWidth(8.0); shape.setStroke(Color.DARKSLATEGREY); //Setting the Scene Group root = new Group(shape); Scene scene = new Scene(root, 595, 300, Color.BEIGE); stage.setTitle("Drawing Rectangle"); stage.setScene(scene); stage.show(); } public static void main(String args[]){ launch(args); } }
출력
둥근 직사각형
위에서 언급한 속성 외에도. Rectangle 클래스는 다음과 같은 두 가지 추가 속성도 제공합니다. -
-
호폭 − 이 속성은 4개의 모서리에서 호의 지름을 나타냅니다. setArcWidth()를 사용하여 값을 설정할 수 있습니다. 방법.
-
호 높이 − 이 속성은 4개의 모서리에서 호의 높이를 나타냅니다. setArcHeight()를 사용하여 값을 설정할 수 있습니다. 방법.
값을 설정하면 모서리가 둥글거나 아치형인 직사각형을 그릴 수 있습니다 -
예
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.Rectangle; public class DrawingRoundedRectangle extends Application { public void start(Stage stage) { //Drawing a Rectangle Rectangle shape = new Rectangle(); //Setting the properties of the rectangle shape.setX(150.0f); shape.setY(75.0f); shape.setWidth(300.0f); shape.setHeight(150.0f); shape.setArcHeight(30.0); shape.setArcWidth(30.0); //Setting other properties shape.setFill(Color.DARKCYAN); shape.setStrokeWidth(8.0); shape.setStroke(Color.DARKSLATEGREY); //Setting the Scene Group root = new Group(shape); Scene scene = new Scene(root, 595, 300, Color.BEIGE); stage.setTitle("Drawing Rectangle"); stage.setScene(scene); stage.show(); } public static void main(String args[]){ launch(args); } }
출력