Make a horizontal line from the current point the provided distance :param distance: (x) 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)
| 1629 | return self.line(0, distance, forConstruction) |
| 1630 | |
| 1631 | def hLine(self: T, distance: float, forConstruction: bool = False) -> T: |
| 1632 | """ |
| 1633 | Make a horizontal line from the current point the provided distance |
| 1634 | |
| 1635 | :param distance: (x) distance from current point |
| 1636 | :return: the Workplane object with the current point at the end of the new line |
| 1637 | """ |
| 1638 | return self.line(distance, 0, forConstruction) |
| 1639 | |
| 1640 | def vLineTo(self: T, yCoord: float, forConstruction: bool = False) -> T: |
| 1641 | """ |