More accurate description of Blinds tool.

Added missing docs for some Magic tools.
Created a ROYGBIV variation of the Rainbow arc tool.
This commit is contained in:
William Kendrick 2009-09-01 01:30:58 +00:00
parent ec4a278ca0
commit 0f3d5fcfe4
8 changed files with 93 additions and 26 deletions

View file

@ -4,6 +4,7 @@
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Tux Paint "Magic" Tool: List of Magic Tools</h1>
<li><a href="blinds.html">Blinds</a></li>
<li><a href="blocks.html">Blocks</a></li>
<li><a href="blur.html">Blur</a></li>
<li><a href="bricks.html">Bricks</a></li>
@ -31,6 +32,10 @@
<li><a href="lighten.html">Lighten</a></li>
<li><a href="metalpaint.html">Metal Paint</a></li>
<li><a href="mirror.html">Mirror</a></li>
<li><a href="mosaic.html">Mosaic</a></li>
<li><a href="hexagonmosaic.html">Hexagon Mosaic</a></li>
<li><a href="irregularmosaic.html">Irregular Mosaic</a></li>
<li><a href="squaremosaic.html">Square Mosaic</a></li>
<li><a href="negative.html">Negative</a></li>
<li><a href="noise.html">Noise</a></li>
<li><a href="perspective.html">Perspective</a></li>
@ -39,6 +44,7 @@
<li><a href="rain.html">Rain</a></li>
<li><a href="rainbow.html">Rainbow</a></li>
<li><a href="realrainbow.html">Real Rainbow</a></li>
<li><a href="roygbivrainbow.html">ROYGBIV Rainbow</a></li>
<li><a href="ripples.html">Ripples</a></li>
<li><a href="rosette.html">Rosette</a></li>
<li><a href="sharpen.html">Sharpen</a></li>

View file

@ -1,5 +1,6 @@
Tux Paint "Magic" Tool: List of Magic Tools
* Blinds
* Blocks
* Blur
* Bricks
@ -27,6 +28,10 @@
* Lighten
* Metal Paint
* Mirror
* Mosaic
* Hexagon Mosaic
* Irregular Mosaic
* Square Mosaic
* Negative
* Noise
* Perspective
@ -35,6 +40,7 @@
* Rain
* Rainbow
* Real Rainbow
* ROYGBIV Rainbow
* Ripples
* Rosette
* Sharpen

View file

@ -5,7 +5,7 @@ individual HTML files for each of them, and an index.html that links to
them all. */
/* Bill Kendrick <bill@newbreedsoftware.com> */
/* 2009.08.10 */
/* 2009.08.31 */
/* Authors of the Magic tools: */
@ -50,7 +50,9 @@ $AUTHOR_PERE = "Pere Pujal i Carabantes|pere@fornol.no-ip.org";
$tools = array(
/* FIXME: Blinds */
array('name'=>'Blinds',
'desc'=>'Click towards the edge of your picture to pull window blinds over it. Move perpendicularly to open or close the blinds.',
'author'=>$AUTHOR_PERE),
array('name'=>'Blocks',
'desc'=>'This makes the picture blocky looking ("pixelated") wherever you drag the mouse.',
@ -170,10 +172,41 @@ $tools = array(
'author'=>$AUTHOR_KENDRICK,
'see'=>'Flip'),
/* FIXME: Mosaic */
/* FIXME: Mosaic hexagon */
/* FIXME: Mosaic irregular */
/* FIXME: Mosaic square */
array('name'=>'Mosaic',
'desc'=>'Adds a glass mosaic effect to your picture.',
'author'=>array($AUTHOR_ADAMR, $AUTHOR_PERE),
'see'=>array(
'Hexagon Mosaic',
'Irregular Mosaic',
'Square Mosaic',
)),
array('name'=>'Hexagon Mosaic',
'desc'=>'Converts parts of your picture into a mosaic of hexagon cells.',
'author'=>$AUTHOR_PERE,
'see'=>array(
'Irregular Mosaic',
'Square Mosaic',
'Mosaic',
)),
array('name'=>'Irregular Mosaic',
'desc'=>'Converts parts of your picture into a mosaic of irregularly-shaped cells.',
'author'=>$AUTHOR_PERE,
'see'=>array(
'Hexagon Mosaic',
'Square Mosaic',
'Mosaic',
)),
array('name'=>'Square Mosaic',
'desc'=>'Converts parts of your picture into a mosaic of square cells.',
'author'=>$AUTHOR_PERE,
'see'=>array(
'Hexagon Mosaic',
'Irregular Mosaic',
'Mosaic',
)),
array('name'=>'Negative',
'desc'=>'This inverts the colors wherever you drag the mouse. (e.g., white becomes black, and vice versa.)',
@ -209,6 +242,10 @@ $tools = array(
'desc'=>'Draw a transparent arc that looks like a real rainbow.',
'author'=>$AUTHOR_KENDRICK),
array('name'=>'ROYGBIV Rainbow',
'desc'=>'Draw a rainbow arc of red, orange, yellow, green, blue, indigo and violet.',
'author'=>$AUTHOR_KENDRICK),
array('name'=>'Ripples',
'desc'=>'Click in your picture to make water ripple distortions appear over it.',
'author'=>$AUTHOR_KENDRICK),