Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

JavaFX에서 2D 모양의 Stroke Type 속성 설명

<시간/>

모양의 획 유형 속성은 경계선의 유형을 지정합니다. setStrokeType()을 사용하여 획 유형을 설정할 수 있습니다. javafx.scene.shape.Shape 메소드 수업.

JavaFX는 StrokeType이라는 Enum의 세 가지 상수로 표시되는 세 가지 유형의 스트로크를 지원합니다. 그들은 -

  • StrokeType.INSIDE − 도형 내부에 경계선을 그립니다.

  • StrokeType.OUTSIDE − 모양 외부에 경계선을 그립니다.

  • StrokeType.CENTERED − 도형의 가장자리가 중심을 통과하도록 경계선을 그립니다.

모양에 경계를 설정하려면 이 값 중 하나를 setStrokeType() 매개변수로 전달해야 합니다. 방법.

예시

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.scene.shape.Polygon;
import javafx.scene.shape.StrokeType;
import javafx.scene.text.Font;
import javafx.scene.text.FontPosture;
import javafx.scene.text.FontWeight;
import javafx.scene.text.Text;
import javafx.stage.Stage;
public class StrokeTypeExample extends Application {
   public void start(Stage stage) {
      Font font = Font.font("verdana", FontWeight.BOLD, FontPosture.REGULAR, 12);
      Text label1 = new Text("Original Image");
      label1.setFont(font);
      label1.setX(250.0);
      label1.setY(125.0);
      Polygon rhombus1 = new Polygon(300.0, 0.0, 250.0, 50.0, 300.0, 100.0, 350.0, 50.0);
      Text label2 = new Text("Stroke Type: Inside");
      label2.setFont(font);
      label2.setX(25.0);
      label2.setY(275.0);
      Polygon rhombus2 = new Polygon(100.0, 150.0, 50.0, 200.0, 100.0, 250.0, 150.0, 200.0);
      rhombus2.setStroke(Color.BLUE);
      rhombus2.setStrokeWidth(7.0);
      rhombus2.setStrokeType(StrokeType.INSIDE);
      Text label3 = new Text("Stroke Type: Centered");
      label3.setFont(font);
      label3.setX(220.0);
      label3.setY(275.0);
      Polygon rhombus3 = new Polygon(300.0, 150.0, 250.0, 200.0, 300.0, 250.0, 350.0, 200.0);
      rhombus3.setStroke(Color.BLUE);
      rhombus3.setStrokeWidth(7.0);
      rhombus3.setStrokeType(StrokeType.CENTERED);
      Text label4 = new Text("Stroke Type: Outside");
      label4.setFont(font);
      label4.setX(430.0);
      label4.setY(275.0);
      Polygon rhombus4 = new Polygon(490.0, 150.0, 440, 200.0, 490.0, 250.0, 540.0, 200.0);
      rhombus4.setStroke(Color.BLUE);
      rhombus4.setStrokeWidth(7.0);
      rhombus4.setStrokeType(StrokeType.OUTSIDE);
      //Creating a Group object
      Group root = new Group(label1, label2, label3, label4, rhombus1, rhombus2, rhombus3, rhombus4);
      //Creating a scene object
      Scene scene = new Scene(root, 595, 310);
      //Setting title to the Stage
      stage.setTitle("Stroke Type");
      //Adding scene to the stage
      stage.setScene(scene);
      //Displaying the contents of the stage
      stage.show();
   }
   public static void main(String args[]){
      launch(args);
   }
}

출력

JavaFX에서 2D 모양의 Stroke Type 속성 설명