Add a fillet based on current selection.
(self: T, d: Real)
| 606 | return rv |
| 607 | |
| 608 | def fillet(self: T, d: Real) -> T: |
| 609 | """ |
| 610 | Add a fillet based on current selection. |
| 611 | """ |
| 612 | |
| 613 | f2v = self._matchFacesToVertices() |
| 614 | |
| 615 | self._faces = Compound.makeCompound( |
| 616 | k.fillet2D(d, v) if v else k for k, v in f2v.items() |
| 617 | ) |
| 618 | |
| 619 | return self |
| 620 | |
| 621 | def chamfer(self: T, d: Real) -> T: |
| 622 | """ |
nothing calls this directly
no test coverage detected