1
0
mirror of https://github.com/Irev-Dev/Round-Anything.git synced 2025-01-16 18:48:14 +01:00

Update unionRoundMask-Doc.md

documentaion for includeOperands argument
This commit is contained in:
TLC123 2021-08-23 16:44:02 +02:00 committed by GitHub
parent 0fbca7c2d5
commit ba1e80058c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ Combined with a system of mask selectors, unionRound becomes even more versetile
## unionRoundMask ## unionRoundMask
--- ---
Union with round fillet at selected places. Union with round fillet at selected places.
### module unionRoundMask(r=1, detail = 5 , q=70, epsilon = 1e-6, showMask = true) ### module unionRoundMask(r=1, detail = 5 , q=70, epsilon = 1e-6, showMask = true , includeOperands = true)
Masks are a method to perform unionRound on selected only areas, Masks are a method to perform unionRound on selected only areas,
and circumvents the previous limitation to common convex work area. and circumvents the previous limitation to common convex work area.
@ -30,6 +30,9 @@ epsilon:
showMask: showMask:
* For debugging, try it. * For debugging, try it.
includeOperands:
* For debugging, render only fillet when false.
### usage: ### usage:
```` ````
@ -49,7 +52,7 @@ unionRoundMask( r = 1 , detail = $preview ? 3 : 10 , q = $preview ? 30 : 70 )
--- ---
## unionRound ## unionRound
--- ---
### module unionRound(r=1, detail = 5 , q=70, epsilon = 1e-6) ### module unionRound(r=1, detail = 5 , q=70, epsilon = 1e-6 , includeOperands = true )
Module unionRound is the underlying work module of unionRoundMask. Module unionRound is the underlying work module of unionRoundMask.
It can be used by it self, in some cases faster but more raw. It can be used by it self, in some cases faster but more raw.