Fix typo in tags.md around images

This commit is contained in:
Adam Chalmers
2025-05-12 09:51:57 -05:00
parent f35485751d
commit 55d27ee391
4 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@ -89,4 +89,5 @@ venv
# KCL book
kcl-book/book
kcl-book/src/images/dynamic/foo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View File

@ -145,7 +145,7 @@ cube = startSketchOn(XY)
Here, we filleted the bottom side `a` just like we did before. But we've also filleted the sides adjacent to it. We can use a similar trick to fillet all four vertical side edges:
```kcl=cube_next_prev_fillets
```kcl=cube_next_prev_fillets_all_sides
length = 20
cube = startSketchOn(XY)
|> startProfile(at = [-length, -length])
@ -166,6 +166,8 @@ cube = startSketchOn(XY)
)
```
![A cube with two side fillets and one bottom fillet](images/dynamic/cube_next_prev_fillets_all_sides.png)
## Chamfers
A [`chamfer`] is just like a fillet, except that fillets smooth away an edge to make it round, but chamfers just make a single cut across an edge. Here's an example of the difference. Compare this chamfered cube with the filleted cubes above: