Add an edge to the sketch.
(
self: T, val: Edge, tag: Optional[str] = None, forConstruction: bool = False
)
| 796 | return e.endPoint() |
| 797 | |
| 798 | def edge( |
| 799 | self: T, val: Edge, tag: Optional[str] = None, forConstruction: bool = False |
| 800 | ) -> T: |
| 801 | """ |
| 802 | Add an edge to the sketch. |
| 803 | """ |
| 804 | |
| 805 | val.forConstruction = forConstruction |
| 806 | self._edges.append(val) |
| 807 | |
| 808 | if tag: |
| 809 | self._tag([val], tag) |
| 810 | |
| 811 | return self |
| 812 | |
| 813 | @multimethod |
| 814 | def segment( |