Apply 2D chamfer to a wire
(self, d: float, vertices: Iterable[Vertex])
| 3153 | return f.fillet2D(radius, vertices).outerWire() |
| 3154 | |
| 3155 | def chamfer2D(self, d: float, vertices: Iterable[Vertex]) -> Wire: |
| 3156 | """ |
| 3157 | Apply 2D chamfer to a wire |
| 3158 | """ |
| 3159 | |
| 3160 | f = Face.makeFromWires(self) |
| 3161 | |
| 3162 | return f.chamfer2D(d, vertices).outerWire() |
| 3163 | |
| 3164 | def fillet(self, radius: float, vertices: Iterable[Vertex] | None = None) -> Wire: |
| 3165 | """ |