Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos & handle undefined max_reps #24

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ becomes this:

But the library does more. Way more. The library does to OpenSCAD what css does for html:

*It seperates presentation from content.*
*It separates presentation from content.*

You can build a single model that defines all the parts of a project and how they interact, then create a presentation layer to isolate a printable part using [show](https://github.com/davidson16807/relativity.scad/wiki/CSG-operations#show) or [hide](https://github.com/davidson16807/relativity.scad/wiki/CSG-operations#hide). You can also go the opposite way - you can define a series of components, then define attachment points for each and use [attach](https://github.com/davidson16807/relativity.scad/wiki/CSG-operations#attach) to pop them into place like lego blocks.

Expand Down
13 changes: 13 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# typos config
# https://github.com/crate-ci/typos/blob/master/docs/reference.md

[files]
ignore-dot = false

[default]
extend-ignore-re = [
# foo bar/z regex selectors
# "fo+"
# "ba[rz]"
"(?i)\"(fo|ba)[\\+\\[\"]",
]
Loading