Make a vertical line from the current point the provided distance :param distance: (y) distance from current point :return: the Workplane object with the current point at the end of the new line
(self: T, distance: float, forConstruction: bool = False)
| 1620 | return self.lineTo(p.x + xDist, yDist + p.y, forConstruction) |
| 1621 | |
| 1622 | def vLine(self: T, distance: float, forConstruction: bool = False) -> T: |
| 1623 | """ |
| 1624 | Make a vertical line from the current point the provided distance |
| 1625 | |
| 1626 | :param distance: (y) distance from current point |
| 1627 | :return: the Workplane object with the current point at the end of the new line |
| 1628 | """ |
| 1629 | return self.line(0, distance, forConstruction) |
| 1630 | |
| 1631 | def hLine(self: T, distance: float, forConstruction: bool = False) -> T: |
| 1632 | """ |