mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-12-07 19:32:06 +00:00
Add Debugging topic to some color modules
A number of modules in the color section are mostly useful for Debugging. Add Debugging topic to: - color/ghost - color/ghost_this - color/highlight - color/highlight_this - color/rainbow
This commit is contained in:
parent
3b4ab27a80
commit
76a6788ddc
1 changed files with 5 additions and 5 deletions
10
color.scad
10
color.scad
|
|
@ -85,7 +85,7 @@ module color_this(c="default")
|
||||||
// Module: rainbow()
|
// Module: rainbow()
|
||||||
// Synopsis: Iterates through a list, displaying children in different colors.
|
// Synopsis: Iterates through a list, displaying children in different colors.
|
||||||
// SynTags: Trans
|
// SynTags: Trans
|
||||||
// Topics: List Handling
|
// Topics: List Handling, Debugging
|
||||||
// See Also: hsl(), hsv()
|
// See Also: hsl(), hsv()
|
||||||
// Usage:
|
// Usage:
|
||||||
// rainbow(list,[stride],[maxhues],[shuffle],[seed]) CHILDREN;
|
// rainbow(list,[stride],[maxhues],[shuffle],[seed]) CHILDREN;
|
||||||
|
|
@ -169,7 +169,7 @@ module color_overlaps(color="red") {
|
||||||
// Module: highlight()
|
// Module: highlight()
|
||||||
// Synopsis: Sets # modifier for attachable children and their descendents.
|
// Synopsis: Sets # modifier for attachable children and their descendents.
|
||||||
// SynTags: Trans
|
// SynTags: Trans
|
||||||
// Topics: Attachments, Modifiers
|
// Topics: Attachments, Modifiers, Debugging
|
||||||
// See Also: highlight_this(), ghost(), ghost_this(), recolor(), color_this()
|
// See Also: highlight_this(), ghost(), ghost_this(), recolor(), color_this()
|
||||||
// Usage:
|
// Usage:
|
||||||
// highlight([highlight]) CHILDREN;
|
// highlight([highlight]) CHILDREN;
|
||||||
|
|
@ -194,7 +194,7 @@ module highlight(highlight=true)
|
||||||
// Module: highlight_this()
|
// Module: highlight_this()
|
||||||
// Synopsis: Apply # modifier to children at a single level.
|
// Synopsis: Apply # modifier to children at a single level.
|
||||||
// SynTags: Trans
|
// SynTags: Trans
|
||||||
// Topics: Attachments, Modifiers
|
// Topics: Attachments, Modifiers, Debugging
|
||||||
// See Also: highlight(), ghost(), ghost_this(), recolor(), color_this()
|
// See Also: highlight(), ghost(), ghost_this(), recolor(), color_this()
|
||||||
// Usage:
|
// Usage:
|
||||||
// highlight_this() CHILDREN;
|
// highlight_this() CHILDREN;
|
||||||
|
|
@ -218,7 +218,7 @@ module highlight_this()
|
||||||
// Module: ghost()
|
// Module: ghost()
|
||||||
// Synopsis: Sets % modifier for attachable children and their descendents.
|
// Synopsis: Sets % modifier for attachable children and their descendents.
|
||||||
// SynTags: Trans
|
// SynTags: Trans
|
||||||
// Topics: Attachments, Modifiers
|
// Topics: Attachments, Modifiers, Debugging
|
||||||
// See Also: ghost_this(), recolor(), color_this()
|
// See Also: ghost_this(), recolor(), color_this()
|
||||||
// Usage:
|
// Usage:
|
||||||
// ghost([ghost]) CHILDREN;
|
// ghost([ghost]) CHILDREN;
|
||||||
|
|
@ -243,7 +243,7 @@ module ghost(ghost=true)
|
||||||
// Module: ghost_this()
|
// Module: ghost_this()
|
||||||
// Synopsis: Apply % modifier to children at a single level.
|
// Synopsis: Apply % modifier to children at a single level.
|
||||||
// SynTags: Trans
|
// SynTags: Trans
|
||||||
// Topics: Attachments, Modifiers
|
// Topics: Attachments, Modifiers, Debugging
|
||||||
// See Also: ghost(), recolor(), color_this()
|
// See Also: ghost(), recolor(), color_this()
|
||||||
// Usage:
|
// Usage:
|
||||||
// ghost_this() CHILDREN;
|
// ghost_this() CHILDREN;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue