MCPcopy
hub / github.com/CadQuery/cadquery / fillet

Method fillet

cadquery/sketch.py:608–619  ·  view source on GitHub ↗

Add a fillet based on current selection.

(self: T, d: Real)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 3

_matchFacesToVerticesMethod · 0.95
makeCompoundMethod · 0.80
fillet2DMethod · 0.45

Tested by

no test coverage detected