📜  JavaFX | HLineTo 类

📅  最后修改于: 2022-05-13 01:55:00.582000             🧑  作者: Mango

JavaFX | HLineTo 类

HLineTo 类是 JavaFX 的一部分。 HLineTo 类创建一条从当前位置到指定 x 坐标的水平线。 HLineTo 类继承 PathElement 类。

类的构造函数:

  1. HLineTo() : 创建一个空的 HLineTo 对象。
  2. HLineTo(double x) : 创建一个具有指定 x 坐标值的 HLineTo 对象。

常用方法:

MethodExplanation
getX()Returns the value of x coordinate.
setX(double v)Sets the value of x coordinate.
toString()Returns the string representation of HLineTo object.
xProperty()Defines the X coordinate.

下面的程序说明了 HLineTo 类的使用:

  • Java程序创建一个路径并将 HLineTo 添加到它并显示它:
    1. 在这个程序中,我们将创建一个名为 path 的 Path 对象。
    2. 创建具有指定 X 坐标的 HLineTo 对象。
    3. 然后创建一个名为moveto的 MoveTo 对象。
    4. 现在将 MoveTo 和 HLineto 对象添加到路径中。
    5. 将此路径添加到 Group 对象并将组对象添加到场景中,并将场景添加到舞台并调用show()函数以显示最终结果。
    // Java program to create a path
    // and add HLineTo to it and display it
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    import javafx.scene.layout.*;
    import javafx.scene.paint.*;
    import javafx.scene.text.*;
    import javafx.geometry.*;
    import javafx.scene.layout.*;
    import javafx.scene.shape.*;
    import javafx.scene.paint.*;
    import javafx.scene.*;
      
    public class HLineTo_1 extends Application {
      
        // launch the application
        public void start(Stage stage)
        {
      
            try {
      
                // set title for the stage
                stage.setTitle("HLineTo");
      
                // create HLineTo
                HLineTo HLineto = new HLineTo(200);
      
                // create moveto
                MoveTo moveto = new MoveTo(100, 100);
      
                // create a Path
                Path path = new Path(moveto, HLineto);
      
                // set fill for path
                path.setFill(Color.BLACK);
      
                // set stroke width
                path.setStrokeWidth(2);
      
                // create a Group
                Group group = new Group(path);
      
                // create a scene
                Scene scene = new Scene(group, 400, 300);
      
                // set the scene
                stage.setScene(scene);
      
                stage.show();
            }
      
            catch (Exception e) {
      
                System.out.println(e.getMessage());
            }
        }
      
        // Main Method
        public static void main(String args[])
        {
      
            // launch the application
            launch(args);
        }
    }
    

    输出:

  • Java程序创建路径并向其添加多个 HLineTo 对象并显示它:
    1. 在这个程序中,我们将创建一个名为path的 Path 对象。
    2. 创建三个具有指定 X 坐标的 HLineTo 对象。
    3. 然后创建三个名为movetomoveto_1moveto_2的 MoveTo 对象。
    4. 将所有 MoveTo 和 HLineTo 对象按顺序添加到路径中。
    5. 之后将此路径添加到 Group 对象。
    6. 将组对象添加到场景并将场景添加到舞台并调用show()函数以显示最终结果。
    // Java program to create a path and add 
    // multiple HLineTo object to it and display it
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    import javafx.scene.layout.*;
    import javafx.scene.paint.*;
    import javafx.scene.text.*;
    import javafx.geometry.*;
    import javafx.scene.layout.*;
    import javafx.scene.shape.*;
    import javafx.scene.paint.*;
    import javafx.scene.*;
      
    public class HLineTo_2 extends Application {
      
        // launch the application
        public void start(Stage stage)
        {
      
            try {
      
                // set title for the stage
                stage.setTitle("HLineTo");
      
                // create HLineTo
                HLineTo HLineto = new HLineTo(200);
                HLineTo HLineto_1 = new HLineTo(250);
                HLineTo HLineto_2 = new HLineTo(225);
      
                // create moveto
                MoveTo moveto = new MoveTo(100, 100);
                MoveTo moveto_1 = new MoveTo(150, 200);
                MoveTo moveto_2 = new MoveTo(200, 300);
      
                // create a Path
                Path path = new Path(moveto, HLineto, moveto_1, 
                               HLineto_1, moveto_2, HLineto_2);
      
                // set fill for path
                path.setFill(Color.BLACK);
      
                // set stroke width
                path.setStrokeWidth(2);
      
                // create a Group
                Group group = new Group(path);
      
                // create a scene
                Scene scene = new Scene(group, 400, 400);
      
                // set the scene
                stage.setScene(scene);
      
                stage.show();
            }
      
            catch (Exception e) {
      
                System.out.println(e.getMessage());
            }
        }
      
        // Main Method
        public static void main(String args[])
        {
      
            // launch the application
            launch(args);
        }
    }
    

    输出:

注意:以上程序可能无法在在线 IDE 中运行,请使用离线编译器。

参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/HLineTo.html