* Show a more reasonable name in function docs Signed-off-by: Nick Cameron <nrc@ncameron.org> * Fix buggy docs for union types Signed-off-by: Nick Cameron <nrc@ncameron.org> * Make types in the docs signatures into links Signed-off-by: Nick Cameron <nrc@ncameron.org> --------- Signed-off-by: Nick Cameron <nrc@ncameron.org>
97 lines
118 KiB
Markdown
97 lines
118 KiB
Markdown
---
|
|
title: "std::solid::fillet"
|
|
excerpt: "Blend a transitional edge along a tagged path, smoothing the sharp edge."
|
|
layout: manual
|
|
---
|
|
|
|
Blend a transitional edge along a tagged path, smoothing the sharp edge.
|
|
|
|
Fillet is similar in function and use to a chamfer, except
|
|
a chamfer will cut a sharp transition along an edge while fillet
|
|
will smoothly blend the transition.
|
|
|
|
```kcl
|
|
fillet(
|
|
@solid: [Solid](/docs/kcl/types/Solid),
|
|
radius: [number](/docs/kcl/types/number)(Length),
|
|
tags: [[Edge](/docs/kcl/types/Edge); 1+],
|
|
tolerance?: [number](/docs/kcl/types/number)(Length),
|
|
tag?: tag,
|
|
): [Solid](/docs/kcl/types/Solid)
|
|
```
|
|
|
|
|
|
### Arguments
|
|
|
|
| Name | Type | Description | Required |
|
|
|----------|------|-------------|----------|
|
|
| `solid` | [`Solid`](/docs/kcl/types/Solid) | The solid whose edges should be filletted | Yes |
|
|
| `radius` | `number(Length)` | The radius of the fillet | Yes |
|
|
| `tags` | `[Edge; 1+]` | The paths you want to fillet | Yes |
|
|
| `tolerance` | `number(Length)` | The tolerance for this fillet | No |
|
|
| `tag` | `tag` | Create a new tag which refers to this fillet | No |
|
|
|
|
### Returns
|
|
|
|
[`Solid`](/docs/kcl/types/Solid)
|
|
|
|
|
|
### Examples
|
|
|
|
```kcl
|
|
width = 20
|
|
length = 10
|
|
thickness = 1
|
|
filletRadius = 2
|
|
|
|
mountingPlateSketch = startSketchOn(XY)
|
|
|> startProfile(at = [-width/2, -length/2])
|
|
|> line(endAbsolute = [width/2, -length/2], tag = $edge1)
|
|
|> line(endAbsolute = [width/2, length/2], tag = $edge2)
|
|
|> line(endAbsolute = [-width/2, length/2], tag = $edge3)
|
|
|> close(tag = $edge4)
|
|
|
|
mountingPlate = extrude(mountingPlateSketch, length = thickness)
|
|
|> fillet(
|
|
radius = filletRadius,
|
|
tags = [
|
|
getNextAdjacentEdge(edge1),
|
|
getNextAdjacentEdge(edge2),
|
|
getNextAdjacentEdge(edge3),
|
|
getNextAdjacentEdge(edge4)
|
|
],
|
|
)
|
|
```
|
|
|
|

|
|
|
|
```kcl
|
|
width = 20
|
|
length = 10
|
|
thickness = 1
|
|
filletRadius = 1
|
|
|
|
mountingPlateSketch = startSketchOn(XY)
|
|
|> startProfile(at = [-width/2, -length/2])
|
|
|> line(endAbsolute = [width/2, -length/2], tag = $edge1)
|
|
|> line(endAbsolute = [width/2, length/2], tag = $edge2)
|
|
|> line(endAbsolute = [-width/2, length/2], tag = $edge3)
|
|
|> close(tag = $edge4)
|
|
|
|
mountingPlate = extrude(mountingPlateSketch, length = thickness)
|
|
|> fillet(
|
|
radius = filletRadius,
|
|
tolerance = 0.000001,
|
|
tags = [
|
|
getNextAdjacentEdge(edge1),
|
|
getNextAdjacentEdge(edge2),
|
|
getNextAdjacentEdge(edge3),
|
|
getNextAdjacentEdge(edge4)
|
|
],
|
|
)
|
|
```
|
|
|
|

|
|
|
|
|