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

Method fillet2D

cadquery/occ_impl/shapes.py:3146–3153  ·  view source on GitHub ↗

Apply 2D fillet to a wire

(self, radius: float, vertices: Iterable[Vertex])

Source from the content-addressed store, hash-verified

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

Callers 2

filletMethod · 0.45
test2DfilletMethod · 0.45

Calls 2

outerWireMethod · 0.80
makeFromWiresMethod · 0.45

Tested by 1

test2DfilletMethod · 0.36