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