Overview
Creates a horizontal line from the current point to x. Example:
the code:
import javafx.scene.geometry.*;
import javafx.scene.paint.*;
Path {
stroke:Color.BLACK
elements: [
MoveTo { x: 0 y: 50 },
HLineTo { x: 100 },
]
}
produces:
Profile: common
This comment needs review.