Apply 2D fillet to a wire
(self, radius: float, vertices: Iterable[Vertex])
| 3144 | return rv |
| 3145 | |
| 3146 | def fillet2D(self, radius: float, vertices: Iterable[Vertex]) -> Wire: |
| 3147 | """ |
| 3148 | Apply 2D fillet to a wire |
| 3149 | """ |
| 3150 | |
| 3151 | f = Face.makeFromWires(self) |
| 3152 | |
| 3153 | return f.fillet2D(radius, vertices).outerWire() |
| 3154 | |
| 3155 | def chamfer2D(self, d: float, vertices: Iterable[Vertex]) -> Wire: |
| 3156 | """ |