Adding Halftone docs the RIGHT way

I'm forgetful!
This commit is contained in:
Bill Kendrick 2021-09-20 21:28:19 -07:00
parent d64b7edf30
commit e9151cbe36
5 changed files with 15 additions and 1 deletions

View file

@ -6,4 +6,4 @@
<h1 align="center">Tux Paint "Magic" Tool: Halftone</h1> <h1 align="center">Tux Paint "Magic" Tool: Halftone</h1>
<h2 align="center">By Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h2> <h2 align="center">By Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h2>
<p>This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.</p> <p>This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.</p>
</body></html> </body></html>

View file

@ -28,6 +28,7 @@
<li><a href="fold.html">Fold</a></li> <li><a href="fold.html">Fold</a></li>
<li><a href="glass_tile.html">Glass Tile</a></li> <li><a href="glass_tile.html">Glass Tile</a></li>
<li><a href="grass.html">Grass</a></li> <li><a href="grass.html">Grass</a></li>
<li><a href="halftone.html">Halftone</a></li>
<li><a href="kaleidoscope.html">Kaleidoscope</a></li> <li><a href="kaleidoscope.html">Kaleidoscope</a></li>
<li><a href="light.html">Light</a></li> <li><a href="light.html">Light</a></li>
<li><a href="lighten.html">Lighten</a></li> <li><a href="lighten.html">Lighten</a></li>

View file

@ -24,6 +24,7 @@
* Fold * Fold
* Glass Tile * Glass Tile
* Grass * Grass
* Halftone
* Kaleidoscope * Kaleidoscope
* Light * Light
* Lighten * Lighten

View file

@ -0,0 +1,8 @@
Tux Paint "Magic" Tool: Opposite
By Bill Kendrick <bill@newbreedsoftware.com>
This converts the colors wherever you drag the mouse into their
complementary (opposite) colors. (e.g., blue becomes orange, and vice
versa.) It changes the Hue compoment of the pixels, without affecting the
Saturation or Lightness.

View file

@ -154,6 +154,10 @@ $tools = array(
'author'=>$AUTHOR_ALBERT, 'author'=>$AUTHOR_ALBERT,
'see'=>'Flower'), 'see'=>'Flower'),
array('name'=>'Halftone',
'desc'=>'This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.',
'author'=>$AUTHOR_KENDRICK),
array('name'=>'Kaleidoscope', array('name'=>'Kaleidoscope',
'desc'=>'This paint brush draws in four places at the same time, mirroring symmetrically, both horizontally and vertically. It uses the currently selected color.', 'desc'=>'This paint brush draws in four places at the same time, mirroring symmetrically, both horizontally and vertically. It uses the currently selected color.',
'author'=>$AUTHOR_KENDRICK, 'author'=>$AUTHOR_KENDRICK,