Membuat Shape Menggunakan JavaFX
JavaFX merupakan varian terbaru dari java. Berikut contoh untuk pengimplementasian JavaFX, di sini Saya membuat contoh untuk menggambar shape menggunakan JavaFX:
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.shape.Rectangle;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.scene.shape.Polygon;
Stage {
title: "Shape"
scene: Scene {
width: 300
height: 300
content: [
Rectangle {
x: 10, y: 10
width: 100, height: 100
arcWidth: 25
arcHeight: 25
fill: Color.AQUA
stroke: Color.BLUE
strokeWidth: 2
}
Circle {
centerX: 170, centerY: 60
radius: 50
fill: Color.RED
stroke: Color.BLACK
strokeWidth: 2
}
Polygon {
points : [ 10,120, 110,120, 110,220 ]
fill: Color.YELLOW
strokeWidth: 2
stroke: Color.GREEN
}
]
}
}
Komentar