📜  JavaFX | VLineTo 类

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

JavaFX | VLineTo 类

VLineTo 类是 JavaFX 的一部分。 VLineTo 类创建从当前位置到指定 Y 坐标的垂直线路径。 VLineTo 类继承 PathElement 类。

类的构造函数:

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

常用方法:

MethodExplanation
getY()Returns the value of Y coordinate.
setY(double v)Sets the value of Y coordinate.
toString()Returns the string representation of VLineTo object.
yProperty()Defines the Y coordinate.

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

  • Java程序创建一个路径并将 VLineTo 添加到它并显示它:
    1. 在这个程序中,我们将创建一个名为path的 Path 对象。
    2. 创建具有指定 Y 坐标的 VLineTo 对象。
    3. 然后创建一个名为moveto的 MoveTo 对象,并将movetovlineto对象添加到路径中。
    4. 将此路径添加到组对象并将组对象添加到场景并将场景添加到舞台。
    5. 调用show()函数以显示最终结果。
    // Java program to create a path
    // and add VLineTo 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 VLineTo_1 extends Application {
      
        // launch the application
        public void start(Stage stage)
        {
      
            try {
      
                // set title for the stage
                stage.setTitle("VLineTo");
      
                // create VLineTo
                VLineTo vlineto = new VLineTo(200);
      
                // create moveto
                MoveTo moveto = new MoveTo(100, 100);
      
                // create a Path
                Path path = new Path(moveto, vlineto);
      
                // 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程序创建路径并向其添加多个 VLineTo 对象并显示它:
    1. 在这个程序中,我们将创建一个名为path的 Path 对象。
    2. 创建三个具有指定 Y 坐标的 VLineTo 对象。
    3. 然后创建三个名为movetomoveto_1moveto_2的 MoveTo 对象。
    4. 将所有movetovlineto对象按顺序添加到路径中。
    5. 将此路径添加到组对象并将组对象添加到场景并将场景添加到舞台。
    6. 调用show()函数以显示最终结果。
    // Java program to create a path and add the
    // multiple VLineTo 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 VLineTo_2 extends Application {
      
        // launch the application
        public void start(Stage stage)
        {
      
            try {
      
                // set title for the stage
                stage.setTitle("VLineTo");
      
                // create VLineTo
                VLineTo vlineto = new VLineTo(200);
                VLineTo vlineto_1 = new VLineTo(250);
                VLineTo vlineto_2 = new VLineTo(225);
      
                // create moveto
                MoveTo moveto = new MoveTo(100, 100);
                MoveTo moveto_1 = new MoveTo(200, 100);
                MoveTo moveto_2 = new MoveTo(300, 100);
      
                // create a Path
                Path path = new Path(moveto, vlineto, moveto_1,
                               vlineto_1, moveto_2, vlineto_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, 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);
        }
    }
    

    输出:

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

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