Home » Archimedes archive » Acorn User » AU 1994-02.adf » !StarInfo_StarInfo » Seago/!Pottery/!Help

Seago/!Pottery/!Help

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Archimedes archive » Acorn User » AU 1994-02.adf » !StarInfo_StarInfo
Filename: Seago/!Pottery/!Help
Read OK:
File size: 180C bytes
Load address: 0000
Exec address: 0000
File contents
!Pottery
********

Version 2.10 3rd September 1993
By Richard Seago 
With routines from Rob Miller of BBC Acorn User (May 1990)

Pottery is a program which allows you to create solids of rotation from a
simple path defined by a few mouse clicks.

Pottery has two windows. One in which you design the outline of your shape,
and one in which you see what it looks like. The black one is the one which
displays the shape. Because the program trys to use 256 colours it needs one
of these modes to show the solid properly but it will try its best with the
ColourTrans module in other modes and for printing (which produces best
results with grey on a monochrome printer).

The left hand side of the edit window contains the functions. The long,
vertical, black line is the axis about which the solids are formed. The
functions are (from top to bottom):

i)   Line  - this draws a line on the edit window and a three dimensional
shape in the draw window.

ii)  Move  - this draws a faint line in the edit window and allows gaps in
the picture in the draw window.

iii) Grey  - this word changes telling you which hue the currently selected
colours will produce on screen.

iv)  Blue  - this selects/deselects the blue component of the shape's
colour.

v)   Red   - this selects/deselects the red component of the shape's colour.

vi)  Green - this selects/deselects the green component of the shape's
colour.

The shape is entered as a continuous path. The path can be started at the
top or bottom of the edit window, although the direction should be kept
consistent through out because of the way that the shape is drawn. If the
shape is drawn top down, in order to represent it correctly on screen the
entire shape must be redrawn. This can slow things down for complex shapes
so you may wish to turn off continous update. This option is in the 'Update'
sub-menu which can be called up from the display window. There are no such
problems if you draw bottom up, because the shapes are drawn in order that
you might look at them from slightly above.

Each segment has a seperate colour characteristic which is set before it is
drawn. However, this can be changed by clicking with Menu on the point
before the segment you wish to change the colour of. The selected segment
will turn orange, the colour may then be changed via the Colour sub-menu.

The last point in the path may be deleted or the entire path cleared. You
may also drag any point with Adjust to change its position. If the program
gets behind with updating the sprite, or you have turned off the continuous
update option, you will have to select 'Update' from the draw menu to see
the shape properly - this may take a few moments.

The sprite is also completely redrawn when you click Select on the iconbar
icon. Adjust will open the edit window only. The windows can be closed
separately, and no data will be lost. Mostly, however, the program is self
explanatory and should display helpful messages if something's wrong.

The program can load and save in its own file format which can be treated as
if it had just been created. The program can also save the 3D shape as a
sprite file. The sprite will be saved as a sprite in whatever mode is
currently in use.

A second method of inputting shapes into !Pottery is from a shape
description file in the form of a text file. This allows greater accuracy
and can be editted as if it were an ordinary !Pottery file. However it
cannot be saved back as a text file. The file does not have to be
filetyped as text as long as the format of the file is correct. The text
file should be of the format:

Shape                   - This is a literal keyword and is case sensitive,
                          it allows !Pottery to determine what sort of file
                          has been loaded. It should always be the first
                          word of the file and the file should be continued
                          on the next line. Comments may be added but not on
                          the first line of file. Any line whose first word
                          is not one of those below, will be treated as a
                          comment.

gcol <colour>           - This keyword allows you to set the colour of the
                          path segments upto the next gcol. The <colour>
                          parameter is a word from the following list:
                                  grey or white
                                  magenta
                                  cyan
                                  yellow
                                  green
                                  blue
                                  red
                                  clear or black (has the same effect as a
                                                  move)

move xxx,yyy            - This keyword moves the drawing cursor to the point 
                          xxx,yyy. It is up to the user to ensure that the
                          points lie within the viewing area, as no error is 
                          produced otherwise.

draw xxx,yyy            - This keyword draws from the previous cursor to the
                          point xxx,yyy. The same constraints as above
                          apply.

All these commands (and parameters) are case sensitive - if they are not
correct they will be ignored as comments.

The print option uses RISC OS printer drivers. The printing of the shapes is
not done from the sprite but from the outline so the best image possible
should be produced on all printers.

If you should change modes within the desktop, !Pottery will take a few
moments to readjust, making sure that the sprite appears the same size and
in the best colours possible. It will also warn you on entering (or starting
up in) a non-256 colour mode that it cannot do its best when drawing the
shape in that mode.

The program is slightly naughty in that it uses RMA space to hold the
sprite. This has never caused me any problems, and I don't see why it
should.

I can only say that the best way to get to grips with !Pottery is to try it.
The sprites produced can be very effective.
00000000  21 50 6f 74 74 65 72 79  0a 2a 2a 2a 2a 2a 2a 2a  |!Pottery.*******|
00000010  2a 0a 0a 56 65 72 73 69  6f 6e 20 32 2e 31 30 20  |*..Version 2.10 |
00000020  33 72 64 20 53 65 70 74  65 6d 62 65 72 20 31 39  |3rd September 19|
00000030  39 33 0a 42 79 20 52 69  63 68 61 72 64 20 53 65  |93.By Richard Se|
00000040  61 67 6f 20 0a 57 69 74  68 20 72 6f 75 74 69 6e  |ago .With routin|
00000050  65 73 20 66 72 6f 6d 20  52 6f 62 20 4d 69 6c 6c  |es from Rob Mill|
00000060  65 72 20 6f 66 20 42 42  43 20 41 63 6f 72 6e 20  |er of BBC Acorn |
00000070  55 73 65 72 20 28 4d 61  79 20 31 39 39 30 29 0a  |User (May 1990).|
00000080  0a 50 6f 74 74 65 72 79  20 69 73 20 61 20 70 72  |.Pottery is a pr|
00000090  6f 67 72 61 6d 20 77 68  69 63 68 20 61 6c 6c 6f  |ogram which allo|
000000a0  77 73 20 79 6f 75 20 74  6f 20 63 72 65 61 74 65  |ws you to create|
000000b0  20 73 6f 6c 69 64 73 20  6f 66 20 72 6f 74 61 74  | solids of rotat|
000000c0  69 6f 6e 20 66 72 6f 6d  20 61 0a 73 69 6d 70 6c  |ion from a.simpl|
000000d0  65 20 70 61 74 68 20 64  65 66 69 6e 65 64 20 62  |e path defined b|
000000e0  79 20 61 20 66 65 77 20  6d 6f 75 73 65 20 63 6c  |y a few mouse cl|
000000f0  69 63 6b 73 2e 0a 0a 50  6f 74 74 65 72 79 20 68  |icks...Pottery h|
00000100  61 73 20 74 77 6f 20 77  69 6e 64 6f 77 73 2e 20  |as two windows. |
00000110  4f 6e 65 20 69 6e 20 77  68 69 63 68 20 79 6f 75  |One in which you|
00000120  20 64 65 73 69 67 6e 20  74 68 65 20 6f 75 74 6c  | design the outl|
00000130  69 6e 65 20 6f 66 20 79  6f 75 72 20 73 68 61 70  |ine of your shap|
00000140  65 2c 0a 61 6e 64 20 6f  6e 65 20 69 6e 20 77 68  |e,.and one in wh|
00000150  69 63 68 20 79 6f 75 20  73 65 65 20 77 68 61 74  |ich you see what|
00000160  20 69 74 20 6c 6f 6f 6b  73 20 6c 69 6b 65 2e 20  | it looks like. |
00000170  54 68 65 20 62 6c 61 63  6b 20 6f 6e 65 20 69 73  |The black one is|
00000180  20 74 68 65 20 6f 6e 65  20 77 68 69 63 68 0a 64  | the one which.d|
00000190  69 73 70 6c 61 79 73 20  74 68 65 20 73 68 61 70  |isplays the shap|
000001a0  65 2e 20 42 65 63 61 75  73 65 20 74 68 65 20 70  |e. Because the p|
000001b0  72 6f 67 72 61 6d 20 74  72 79 73 20 74 6f 20 75  |rogram trys to u|
000001c0  73 65 20 32 35 36 20 63  6f 6c 6f 75 72 73 20 69  |se 256 colours i|
000001d0  74 20 6e 65 65 64 73 20  6f 6e 65 0a 6f 66 20 74  |t needs one.of t|
000001e0  68 65 73 65 20 6d 6f 64  65 73 20 74 6f 20 73 68  |hese modes to sh|
000001f0  6f 77 20 74 68 65 20 73  6f 6c 69 64 20 70 72 6f  |ow the solid pro|
00000200  70 65 72 6c 79 20 62 75  74 20 69 74 20 77 69 6c  |perly but it wil|
00000210  6c 20 74 72 79 20 69 74  73 20 62 65 73 74 20 77  |l try its best w|
00000220  69 74 68 20 74 68 65 0a  43 6f 6c 6f 75 72 54 72  |ith the.ColourTr|
00000230  61 6e 73 20 6d 6f 64 75  6c 65 20 69 6e 20 6f 74  |ans module in ot|
00000240  68 65 72 20 6d 6f 64 65  73 20 61 6e 64 20 66 6f  |her modes and fo|
00000250  72 20 70 72 69 6e 74 69  6e 67 20 28 77 68 69 63  |r printing (whic|
00000260  68 20 70 72 6f 64 75 63  65 73 20 62 65 73 74 0a  |h produces best.|
00000270  72 65 73 75 6c 74 73 20  77 69 74 68 20 67 72 65  |results with gre|
00000280  79 20 6f 6e 20 61 20 6d  6f 6e 6f 63 68 72 6f 6d  |y on a monochrom|
00000290  65 20 70 72 69 6e 74 65  72 29 2e 0a 0a 54 68 65  |e printer)...The|
000002a0  20 6c 65 66 74 20 68 61  6e 64 20 73 69 64 65 20  | left hand side |
000002b0  6f 66 20 74 68 65 20 65  64 69 74 20 77 69 6e 64  |of the edit wind|
000002c0  6f 77 20 63 6f 6e 74 61  69 6e 73 20 74 68 65 20  |ow contains the |
000002d0  66 75 6e 63 74 69 6f 6e  73 2e 20 54 68 65 20 6c  |functions. The l|
000002e0  6f 6e 67 2c 0a 76 65 72  74 69 63 61 6c 2c 20 62  |ong,.vertical, b|
000002f0  6c 61 63 6b 20 6c 69 6e  65 20 69 73 20 74 68 65  |lack line is the|
00000300  20 61 78 69 73 20 61 62  6f 75 74 20 77 68 69 63  | axis about whic|
00000310  68 20 74 68 65 20 73 6f  6c 69 64 73 20 61 72 65  |h the solids are|
00000320  20 66 6f 72 6d 65 64 2e  20 54 68 65 0a 66 75 6e  | formed. The.fun|
00000330  63 74 69 6f 6e 73 20 61  72 65 20 28 66 72 6f 6d  |ctions are (from|
00000340  20 74 6f 70 20 74 6f 20  62 6f 74 74 6f 6d 29 3a  | top to bottom):|
00000350  0a 0a 69 29 20 20 20 4c  69 6e 65 20 20 2d 20 74  |..i)   Line  - t|
00000360  68 69 73 20 64 72 61 77  73 20 61 20 6c 69 6e 65  |his draws a line|
00000370  20 6f 6e 20 74 68 65 20  65 64 69 74 20 77 69 6e  | on the edit win|
00000380  64 6f 77 20 61 6e 64 20  61 20 74 68 72 65 65 20  |dow and a three |
00000390  64 69 6d 65 6e 73 69 6f  6e 61 6c 0a 73 68 61 70  |dimensional.shap|
000003a0  65 20 69 6e 20 74 68 65  20 64 72 61 77 20 77 69  |e in the draw wi|
000003b0  6e 64 6f 77 2e 0a 0a 69  69 29 20 20 4d 6f 76 65  |ndow...ii)  Move|
000003c0  20 20 2d 20 74 68 69 73  20 64 72 61 77 73 20 61  |  - this draws a|
000003d0  20 66 61 69 6e 74 20 6c  69 6e 65 20 69 6e 20 74  | faint line in t|
000003e0  68 65 20 65 64 69 74 20  77 69 6e 64 6f 77 20 61  |he edit window a|
000003f0  6e 64 20 61 6c 6c 6f 77  73 20 67 61 70 73 20 69  |nd allows gaps i|
00000400  6e 0a 74 68 65 20 70 69  63 74 75 72 65 20 69 6e  |n.the picture in|
00000410  20 74 68 65 20 64 72 61  77 20 77 69 6e 64 6f 77  | the draw window|
00000420  2e 0a 0a 69 69 69 29 20  47 72 65 79 20 20 2d 20  |...iii) Grey  - |
00000430  74 68 69 73 20 77 6f 72  64 20 63 68 61 6e 67 65  |this word change|
00000440  73 20 74 65 6c 6c 69 6e  67 20 79 6f 75 20 77 68  |s telling you wh|
00000450  69 63 68 20 68 75 65 20  74 68 65 20 63 75 72 72  |ich hue the curr|
00000460  65 6e 74 6c 79 20 73 65  6c 65 63 74 65 64 0a 63  |ently selected.c|
00000470  6f 6c 6f 75 72 73 20 77  69 6c 6c 20 70 72 6f 64  |olours will prod|
00000480  75 63 65 20 6f 6e 20 73  63 72 65 65 6e 2e 0a 0a  |uce on screen...|
00000490  69 76 29 20 20 42 6c 75  65 20 20 2d 20 74 68 69  |iv)  Blue  - thi|
000004a0  73 20 73 65 6c 65 63 74  73 2f 64 65 73 65 6c 65  |s selects/desele|
000004b0  63 74 73 20 74 68 65 20  62 6c 75 65 20 63 6f 6d  |cts the blue com|
000004c0  70 6f 6e 65 6e 74 20 6f  66 20 74 68 65 20 73 68  |ponent of the sh|
000004d0  61 70 65 27 73 0a 63 6f  6c 6f 75 72 2e 0a 0a 76  |ape's.colour...v|
000004e0  29 20 20 20 52 65 64 20  20 20 2d 20 74 68 69 73  |)   Red   - this|
000004f0  20 73 65 6c 65 63 74 73  2f 64 65 73 65 6c 65 63  | selects/deselec|
00000500  74 73 20 74 68 65 20 72  65 64 20 63 6f 6d 70 6f  |ts the red compo|
00000510  6e 65 6e 74 20 6f 66 20  74 68 65 20 73 68 61 70  |nent of the shap|
00000520  65 27 73 20 63 6f 6c 6f  75 72 2e 0a 0a 76 69 29  |e's colour...vi)|
00000530  20 20 47 72 65 65 6e 20  2d 20 74 68 69 73 20 73  |  Green - this s|
00000540  65 6c 65 63 74 73 2f 64  65 73 65 6c 65 63 74 73  |elects/deselects|
00000550  20 74 68 65 20 67 72 65  65 6e 20 63 6f 6d 70 6f  | the green compo|
00000560  6e 65 6e 74 20 6f 66 20  74 68 65 20 73 68 61 70  |nent of the shap|
00000570  65 27 73 0a 63 6f 6c 6f  75 72 2e 0a 0a 54 68 65  |e's.colour...The|
00000580  20 73 68 61 70 65 20 69  73 20 65 6e 74 65 72 65  | shape is entere|
00000590  64 20 61 73 20 61 20 63  6f 6e 74 69 6e 75 6f 75  |d as a continuou|
000005a0  73 20 70 61 74 68 2e 20  54 68 65 20 70 61 74 68  |s path. The path|
000005b0  20 63 61 6e 20 62 65 20  73 74 61 72 74 65 64 20  | can be started |
000005c0  61 74 20 74 68 65 0a 74  6f 70 20 6f 72 20 62 6f  |at the.top or bo|
000005d0  74 74 6f 6d 20 6f 66 20  74 68 65 20 65 64 69 74  |ttom of the edit|
000005e0  20 77 69 6e 64 6f 77 2c  20 61 6c 74 68 6f 75 67  | window, althoug|
000005f0  68 20 74 68 65 20 64 69  72 65 63 74 69 6f 6e 20  |h the direction |
00000600  73 68 6f 75 6c 64 20 62  65 20 6b 65 70 74 0a 63  |should be kept.c|
00000610  6f 6e 73 69 73 74 65 6e  74 20 74 68 72 6f 75 67  |onsistent throug|
00000620  68 20 6f 75 74 20 62 65  63 61 75 73 65 20 6f 66  |h out because of|
00000630  20 74 68 65 20 77 61 79  20 74 68 61 74 20 74 68  | the way that th|
00000640  65 20 73 68 61 70 65 20  69 73 20 64 72 61 77 6e  |e shape is drawn|
00000650  2e 20 49 66 20 74 68 65  0a 73 68 61 70 65 20 69  |. If the.shape i|
00000660  73 20 64 72 61 77 6e 20  74 6f 70 20 64 6f 77 6e  |s drawn top down|
00000670  2c 20 69 6e 20 6f 72 64  65 72 20 74 6f 20 72 65  |, in order to re|
00000680  70 72 65 73 65 6e 74 20  69 74 20 63 6f 72 72 65  |present it corre|
00000690  63 74 6c 79 20 6f 6e 20  73 63 72 65 65 6e 20 74  |ctly on screen t|
000006a0  68 65 0a 65 6e 74 69 72  65 20 73 68 61 70 65 20  |he.entire shape |
000006b0  6d 75 73 74 20 62 65 20  72 65 64 72 61 77 6e 2e  |must be redrawn.|
000006c0  20 54 68 69 73 20 63 61  6e 20 73 6c 6f 77 20 74  | This can slow t|
000006d0  68 69 6e 67 73 20 64 6f  77 6e 20 66 6f 72 20 63  |hings down for c|
000006e0  6f 6d 70 6c 65 78 20 73  68 61 70 65 73 0a 73 6f  |omplex shapes.so|
000006f0  20 79 6f 75 20 6d 61 79  20 77 69 73 68 20 74 6f  | you may wish to|
00000700  20 74 75 72 6e 20 6f 66  66 20 63 6f 6e 74 69 6e  | turn off contin|
00000710  6f 75 73 20 75 70 64 61  74 65 2e 20 54 68 69 73  |ous update. This|
00000720  20 6f 70 74 69 6f 6e 20  69 73 20 69 6e 20 74 68  | option is in th|
00000730  65 20 27 55 70 64 61 74  65 27 0a 73 75 62 2d 6d  |e 'Update'.sub-m|
00000740  65 6e 75 20 77 68 69 63  68 20 63 61 6e 20 62 65  |enu which can be|
00000750  20 63 61 6c 6c 65 64 20  75 70 20 66 72 6f 6d 20  | called up from |
00000760  74 68 65 20 64 69 73 70  6c 61 79 20 77 69 6e 64  |the display wind|
00000770  6f 77 2e 20 54 68 65 72  65 20 61 72 65 20 6e 6f  |ow. There are no|
00000780  20 73 75 63 68 0a 70 72  6f 62 6c 65 6d 73 20 69  | such.problems i|
00000790  66 20 79 6f 75 20 64 72  61 77 20 62 6f 74 74 6f  |f you draw botto|
000007a0  6d 20 75 70 2c 20 62 65  63 61 75 73 65 20 74 68  |m up, because th|
000007b0  65 20 73 68 61 70 65 73  20 61 72 65 20 64 72 61  |e shapes are dra|
000007c0  77 6e 20 69 6e 20 6f 72  64 65 72 20 74 68 61 74  |wn in order that|
000007d0  0a 79 6f 75 20 6d 69 67  68 74 20 6c 6f 6f 6b 20  |.you might look |
000007e0  61 74 20 74 68 65 6d 20  66 72 6f 6d 20 73 6c 69  |at them from sli|
000007f0  67 68 74 6c 79 20 61 62  6f 76 65 2e 0a 0a 45 61  |ghtly above...Ea|
00000800  63 68 20 73 65 67 6d 65  6e 74 20 68 61 73 20 61  |ch segment has a|
00000810  20 73 65 70 65 72 61 74  65 20 63 6f 6c 6f 75 72  | seperate colour|
00000820  20 63 68 61 72 61 63 74  65 72 69 73 74 69 63 20  | characteristic |
00000830  77 68 69 63 68 20 69 73  20 73 65 74 20 62 65 66  |which is set bef|
00000840  6f 72 65 20 69 74 20 69  73 0a 64 72 61 77 6e 2e  |ore it is.drawn.|
00000850  20 48 6f 77 65 76 65 72  2c 20 74 68 69 73 20 63  | However, this c|
00000860  61 6e 20 62 65 20 63 68  61 6e 67 65 64 20 62 79  |an be changed by|
00000870  20 63 6c 69 63 6b 69 6e  67 20 77 69 74 68 20 4d  | clicking with M|
00000880  65 6e 75 20 6f 6e 20 74  68 65 20 70 6f 69 6e 74  |enu on the point|
00000890  0a 62 65 66 6f 72 65 20  74 68 65 20 73 65 67 6d  |.before the segm|
000008a0  65 6e 74 20 79 6f 75 20  77 69 73 68 20 74 6f 20  |ent you wish to |
000008b0  63 68 61 6e 67 65 20 74  68 65 20 63 6f 6c 6f 75  |change the colou|
000008c0  72 20 6f 66 2e 20 54 68  65 20 73 65 6c 65 63 74  |r of. The select|
000008d0  65 64 20 73 65 67 6d 65  6e 74 0a 77 69 6c 6c 20  |ed segment.will |
000008e0  74 75 72 6e 20 6f 72 61  6e 67 65 2c 20 74 68 65  |turn orange, the|
000008f0  20 63 6f 6c 6f 75 72 20  6d 61 79 20 74 68 65 6e  | colour may then|
00000900  20 62 65 20 63 68 61 6e  67 65 64 20 76 69 61 20  | be changed via |
00000910  74 68 65 20 43 6f 6c 6f  75 72 20 73 75 62 2d 6d  |the Colour sub-m|
00000920  65 6e 75 2e 0a 0a 54 68  65 20 6c 61 73 74 20 70  |enu...The last p|
00000930  6f 69 6e 74 20 69 6e 20  74 68 65 20 70 61 74 68  |oint in the path|
00000940  20 6d 61 79 20 62 65 20  64 65 6c 65 74 65 64 20  | may be deleted |
00000950  6f 72 20 74 68 65 20 65  6e 74 69 72 65 20 70 61  |or the entire pa|
00000960  74 68 20 63 6c 65 61 72  65 64 2e 20 59 6f 75 0a  |th cleared. You.|
00000970  6d 61 79 20 61 6c 73 6f  20 64 72 61 67 20 61 6e  |may also drag an|
00000980  79 20 70 6f 69 6e 74 20  77 69 74 68 20 41 64 6a  |y point with Adj|
00000990  75 73 74 20 74 6f 20 63  68 61 6e 67 65 20 69 74  |ust to change it|
000009a0  73 20 70 6f 73 69 74 69  6f 6e 2e 20 49 66 20 74  |s position. If t|
000009b0  68 65 20 70 72 6f 67 72  61 6d 0a 67 65 74 73 20  |he program.gets |
000009c0  62 65 68 69 6e 64 20 77  69 74 68 20 75 70 64 61  |behind with upda|
000009d0  74 69 6e 67 20 74 68 65  20 73 70 72 69 74 65 2c  |ting the sprite,|
000009e0  20 6f 72 20 79 6f 75 20  68 61 76 65 20 74 75 72  | or you have tur|
000009f0  6e 65 64 20 6f 66 66 20  74 68 65 20 63 6f 6e 74  |ned off the cont|
00000a00  69 6e 75 6f 75 73 0a 75  70 64 61 74 65 20 6f 70  |inuous.update op|
00000a10  74 69 6f 6e 2c 20 79 6f  75 20 77 69 6c 6c 20 68  |tion, you will h|
00000a20  61 76 65 20 74 6f 20 73  65 6c 65 63 74 20 27 55  |ave to select 'U|
00000a30  70 64 61 74 65 27 20 66  72 6f 6d 20 74 68 65 20  |pdate' from the |
00000a40  64 72 61 77 20 6d 65 6e  75 20 74 6f 20 73 65 65  |draw menu to see|
00000a50  0a 74 68 65 20 73 68 61  70 65 20 70 72 6f 70 65  |.the shape prope|
00000a60  72 6c 79 20 2d 20 74 68  69 73 20 6d 61 79 20 74  |rly - this may t|
00000a70  61 6b 65 20 61 20 66 65  77 20 6d 6f 6d 65 6e 74  |ake a few moment|
00000a80  73 2e 0a 0a 54 68 65 20  73 70 72 69 74 65 20 69  |s...The sprite i|
00000a90  73 20 61 6c 73 6f 20 63  6f 6d 70 6c 65 74 65 6c  |s also completel|
00000aa0  79 20 72 65 64 72 61 77  6e 20 77 68 65 6e 20 79  |y redrawn when y|
00000ab0  6f 75 20 63 6c 69 63 6b  20 53 65 6c 65 63 74 20  |ou click Select |
00000ac0  6f 6e 20 74 68 65 20 69  63 6f 6e 62 61 72 0a 69  |on the iconbar.i|
00000ad0  63 6f 6e 2e 20 41 64 6a  75 73 74 20 77 69 6c 6c  |con. Adjust will|
00000ae0  20 6f 70 65 6e 20 74 68  65 20 65 64 69 74 20 77  | open the edit w|
00000af0  69 6e 64 6f 77 20 6f 6e  6c 79 2e 20 54 68 65 20  |indow only. The |
00000b00  77 69 6e 64 6f 77 73 20  63 61 6e 20 62 65 20 63  |windows can be c|
00000b10  6c 6f 73 65 64 0a 73 65  70 61 72 61 74 65 6c 79  |losed.separately|
00000b20  2c 20 61 6e 64 20 6e 6f  20 64 61 74 61 20 77 69  |, and no data wi|
00000b30  6c 6c 20 62 65 20 6c 6f  73 74 2e 20 4d 6f 73 74  |ll be lost. Most|
00000b40  6c 79 2c 20 68 6f 77 65  76 65 72 2c 20 74 68 65  |ly, however, the|
00000b50  20 70 72 6f 67 72 61 6d  20 69 73 20 73 65 6c 66  | program is self|
00000b60  0a 65 78 70 6c 61 6e 61  74 6f 72 79 20 61 6e 64  |.explanatory and|
00000b70  20 73 68 6f 75 6c 64 20  64 69 73 70 6c 61 79 20  | should display |
00000b80  68 65 6c 70 66 75 6c 20  6d 65 73 73 61 67 65 73  |helpful messages|
00000b90  20 69 66 20 73 6f 6d 65  74 68 69 6e 67 27 73 20  | if something's |
00000ba0  77 72 6f 6e 67 2e 0a 0a  54 68 65 20 70 72 6f 67  |wrong...The prog|
00000bb0  72 61 6d 20 63 61 6e 20  6c 6f 61 64 20 61 6e 64  |ram can load and|
00000bc0  20 73 61 76 65 20 69 6e  20 69 74 73 20 6f 77 6e  | save in its own|
00000bd0  20 66 69 6c 65 20 66 6f  72 6d 61 74 20 77 68 69  | file format whi|
00000be0  63 68 20 63 61 6e 20 62  65 20 74 72 65 61 74 65  |ch can be treate|
00000bf0  64 20 61 73 0a 69 66 20  69 74 20 68 61 64 20 6a  |d as.if it had j|
00000c00  75 73 74 20 62 65 65 6e  20 63 72 65 61 74 65 64  |ust been created|
00000c10  2e 20 54 68 65 20 70 72  6f 67 72 61 6d 20 63 61  |. The program ca|
00000c20  6e 20 61 6c 73 6f 20 73  61 76 65 20 74 68 65 20  |n also save the |
00000c30  33 44 20 73 68 61 70 65  20 61 73 20 61 0a 73 70  |3D shape as a.sp|
00000c40  72 69 74 65 20 66 69 6c  65 2e 20 54 68 65 20 73  |rite file. The s|
00000c50  70 72 69 74 65 20 77 69  6c 6c 20 62 65 20 73 61  |prite will be sa|
00000c60  76 65 64 20 61 73 20 61  20 73 70 72 69 74 65 20  |ved as a sprite |
00000c70  69 6e 20 77 68 61 74 65  76 65 72 20 6d 6f 64 65  |in whatever mode|
00000c80  20 69 73 0a 63 75 72 72  65 6e 74 6c 79 20 69 6e  | is.currently in|
00000c90  20 75 73 65 2e 0a 0a 41  20 73 65 63 6f 6e 64 20  | use...A second |
00000ca0  6d 65 74 68 6f 64 20 6f  66 20 69 6e 70 75 74 74  |method of inputt|
00000cb0  69 6e 67 20 73 68 61 70  65 73 20 69 6e 74 6f 20  |ing shapes into |
00000cc0  21 50 6f 74 74 65 72 79  20 69 73 20 66 72 6f 6d  |!Pottery is from|
00000cd0  20 61 20 73 68 61 70 65  0a 64 65 73 63 72 69 70  | a shape.descrip|
00000ce0  74 69 6f 6e 20 66 69 6c  65 20 69 6e 20 74 68 65  |tion file in the|
00000cf0  20 66 6f 72 6d 20 6f 66  20 61 20 74 65 78 74 20  | form of a text |
00000d00  66 69 6c 65 2e 20 54 68  69 73 20 61 6c 6c 6f 77  |file. This allow|
00000d10  73 20 67 72 65 61 74 65  72 20 61 63 63 75 72 61  |s greater accura|
00000d20  63 79 0a 61 6e 64 20 63  61 6e 20 62 65 20 65 64  |cy.and can be ed|
00000d30  69 74 74 65 64 20 61 73  20 69 66 20 69 74 20 77  |itted as if it w|
00000d40  65 72 65 20 61 6e 20 6f  72 64 69 6e 61 72 79 20  |ere an ordinary |
00000d50  21 50 6f 74 74 65 72 79  20 66 69 6c 65 2e 20 48  |!Pottery file. H|
00000d60  6f 77 65 76 65 72 20 69  74 0a 63 61 6e 6e 6f 74  |owever it.cannot|
00000d70  20 62 65 20 73 61 76 65  64 20 62 61 63 6b 20 61  | be saved back a|
00000d80  73 20 61 20 74 65 78 74  20 66 69 6c 65 2e 20 54  |s a text file. T|
00000d90  68 65 20 66 69 6c 65 20  64 6f 65 73 20 6e 6f 74  |he file does not|
00000da0  20 68 61 76 65 20 74 6f  20 62 65 0a 66 69 6c 65  | have to be.file|
00000db0  74 79 70 65 64 20 61 73  20 74 65 78 74 20 61 73  |typed as text as|
00000dc0  20 6c 6f 6e 67 20 61 73  20 74 68 65 20 66 6f 72  | long as the for|
00000dd0  6d 61 74 20 6f 66 20 74  68 65 20 66 69 6c 65 20  |mat of the file |
00000de0  69 73 20 63 6f 72 72 65  63 74 2e 20 54 68 65 20  |is correct. The |
00000df0  74 65 78 74 0a 66 69 6c  65 20 73 68 6f 75 6c 64  |text.file should|
00000e00  20 62 65 20 6f 66 20 74  68 65 20 66 6f 72 6d 61  | be of the forma|
00000e10  74 3a 0a 0a 53 68 61 70  65 20 20 20 20 20 20 20  |t:..Shape       |
00000e20  20 20 20 20 20 20 20 20  20 20 20 20 2d 20 54 68  |            - Th|
00000e30  69 73 20 69 73 20 61 20  6c 69 74 65 72 61 6c 20  |is is a literal |
00000e40  6b 65 79 77 6f 72 64 20  61 6e 64 20 69 73 20 63  |keyword and is c|
00000e50  61 73 65 20 73 65 6e 73  69 74 69 76 65 2c 0a 20  |ase sensitive,. |
00000e60  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000e70  20 20 20 20 20 20 20 20  20 69 74 20 61 6c 6c 6f  |         it allo|
00000e80  77 73 20 21 50 6f 74 74  65 72 79 20 74 6f 20 64  |ws !Pottery to d|
00000e90  65 74 65 72 6d 69 6e 65  20 77 68 61 74 20 73 6f  |etermine what so|
00000ea0  72 74 20 6f 66 20 66 69  6c 65 0a 20 20 20 20 20  |rt of file.     |
00000eb0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000ec0  20 20 20 20 20 68 61 73  20 62 65 65 6e 20 6c 6f  |     has been lo|
00000ed0  61 64 65 64 2e 20 49 74  20 73 68 6f 75 6c 64 20  |aded. It should |
00000ee0  61 6c 77 61 79 73 20 62  65 20 74 68 65 20 66 69  |always be the fi|
00000ef0  72 73 74 0a 20 20 20 20  20 20 20 20 20 20 20 20  |rst.            |
00000f00  20 20 20 20 20 20 20 20  20 20 20 20 20 20 77 6f  |              wo|
00000f10  72 64 20 6f 66 20 74 68  65 20 66 69 6c 65 20 61  |rd of the file a|
00000f20  6e 64 20 74 68 65 20 66  69 6c 65 20 73 68 6f 75  |nd the file shou|
00000f30  6c 64 20 62 65 20 63 6f  6e 74 69 6e 75 65 64 0a  |ld be continued.|
00000f40  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000f50  20 20 20 20 20 20 20 20  20 20 6f 6e 20 74 68 65  |          on the|
00000f60  20 6e 65 78 74 20 6c 69  6e 65 2e 20 43 6f 6d 6d  | next line. Comm|
00000f70  65 6e 74 73 20 6d 61 79  20 62 65 20 61 64 64 65  |ents may be adde|
00000f80  64 20 62 75 74 20 6e 6f  74 20 6f 6e 0a 20 20 20  |d but not on.   |
00000f90  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000fa0  20 20 20 20 20 20 20 74  68 65 20 66 69 72 73 74  |       the first|
00000fb0  20 6c 69 6e 65 20 6f 66  20 66 69 6c 65 2e 20 41  | line of file. A|
00000fc0  6e 79 20 6c 69 6e 65 20  77 68 6f 73 65 20 66 69  |ny line whose fi|
00000fd0  72 73 74 20 77 6f 72 64  0a 20 20 20 20 20 20 20  |rst word.       |
00000fe0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000ff0  20 20 20 69 73 20 6e 6f  74 20 6f 6e 65 20 6f 66  |   is not one of|
00001000  20 74 68 6f 73 65 20 62  65 6c 6f 77 2c 20 77 69  | those below, wi|
00001010  6c 6c 20 62 65 20 74 72  65 61 74 65 64 20 61 73  |ll be treated as|
00001020  20 61 0a 20 20 20 20 20  20 20 20 20 20 20 20 20  | a.             |
00001030  20 20 20 20 20 20 20 20  20 20 20 20 20 63 6f 6d  |             com|
00001040  6d 65 6e 74 2e 0a 0a 67  63 6f 6c 20 3c 63 6f 6c  |ment...gcol <col|
00001050  6f 75 72 3e 20 20 20 20  20 20 20 20 20 20 20 2d  |our>           -|
00001060  20 54 68 69 73 20 6b 65  79 77 6f 72 64 20 61 6c  | This keyword al|
00001070  6c 6f 77 73 20 79 6f 75  20 74 6f 20 73 65 74 20  |lows you to set |
00001080  74 68 65 20 63 6f 6c 6f  75 72 20 6f 66 20 74 68  |the colour of th|
00001090  65 0a 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |e.              |
000010a0  20 20 20 20 20 20 20 20  20 20 20 20 70 61 74 68  |            path|
000010b0  20 73 65 67 6d 65 6e 74  73 20 75 70 74 6f 20 74  | segments upto t|
000010c0  68 65 20 6e 65 78 74 20  67 63 6f 6c 2e 20 54 68  |he next gcol. Th|
000010d0  65 20 3c 63 6f 6c 6f 75  72 3e 0a 20 20 20 20 20  |e <colour>.     |
000010e0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000010f0  20 20 20 20 20 70 61 72  61 6d 65 74 65 72 20 69  |     parameter i|
00001100  73 20 61 20 77 6f 72 64  20 66 72 6f 6d 20 74 68  |s a word from th|
00001110  65 20 66 6f 6c 6c 6f 77  69 6e 67 20 6c 69 73 74  |e following list|
00001120  3a 0a 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |:.              |
00001130  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001140  20 20 20 20 67 72 65 79  20 6f 72 20 77 68 69 74  |    grey or whit|
00001150  65 0a 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |e.              |
00001160  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001170  20 20 20 20 6d 61 67 65  6e 74 61 0a 20 20 20 20  |    magenta.    |
00001180  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001190  20 20 20 20 20 20 20 20  20 20 20 20 20 20 63 79  |              cy|
000011a0  61 6e 0a 20 20 20 20 20  20 20 20 20 20 20 20 20  |an.             |
000011b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000011c0  20 20 20 20 20 79 65 6c  6c 6f 77 0a 20 20 20 20  |     yellow.    |
000011d0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000011e0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 67 72  |              gr|
000011f0  65 65 6e 0a 20 20 20 20  20 20 20 20 20 20 20 20  |een.            |
00001200  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001210  20 20 20 20 20 20 62 6c  75 65 0a 20 20 20 20 20  |      blue.     |
00001220  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001230  20 20 20 20 20 20 20 20  20 20 20 20 20 72 65 64  |             red|
00001240  0a 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |.               |
00001250  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001260  20 20 20 63 6c 65 61 72  20 6f 72 20 62 6c 61 63  |   clear or blac|
00001270  6b 20 28 68 61 73 20 74  68 65 20 73 61 6d 65 20  |k (has the same |
00001280  65 66 66 65 63 74 20 61  73 20 61 0a 20 20 20 20  |effect as a.    |
00001290  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000012b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 6d 6f  |              mo|
000012c0  76 65 29 0a 0a 6d 6f 76  65 20 78 78 78 2c 79 79  |ve)..move xxx,yy|
000012d0  79 20 20 20 20 20 20 20  20 20 20 20 20 2d 20 54  |y            - T|
000012e0  68 69 73 20 6b 65 79 77  6f 72 64 20 6d 6f 76 65  |his keyword move|
000012f0  73 20 74 68 65 20 64 72  61 77 69 6e 67 20 63 75  |s the drawing cu|
00001300  72 73 6f 72 20 74 6f 20  74 68 65 20 70 6f 69 6e  |rsor to the poin|
00001310  74 20 0a 20 20 20 20 20  20 20 20 20 20 20 20 20  |t .             |
00001320  20 20 20 20 20 20 20 20  20 20 20 20 20 78 78 78  |             xxx|
00001330  2c 79 79 79 2e 20 49 74  20 69 73 20 75 70 20 74  |,yyy. It is up t|
00001340  6f 20 74 68 65 20 75 73  65 72 20 74 6f 20 65 6e  |o the user to en|
00001350  73 75 72 65 20 74 68 61  74 20 74 68 65 0a 20 20  |sure that the.  |
00001360  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001370  20 20 20 20 20 20 20 20  70 6f 69 6e 74 73 20 6c  |        points l|
00001380  69 65 20 77 69 74 68 69  6e 20 74 68 65 20 76 69  |ie within the vi|
00001390  65 77 69 6e 67 20 61 72  65 61 2c 20 61 73 20 6e  |ewing area, as n|
000013a0  6f 20 65 72 72 6f 72 20  69 73 20 0a 20 20 20 20  |o error is .    |
000013b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000013c0  20 20 20 20 20 20 70 72  6f 64 75 63 65 64 20 6f  |      produced o|
000013d0  74 68 65 72 77 69 73 65  2e 0a 0a 64 72 61 77 20  |therwise...draw |
000013e0  78 78 78 2c 79 79 79 20  20 20 20 20 20 20 20 20  |xxx,yyy         |
000013f0  20 20 20 2d 20 54 68 69  73 20 6b 65 79 77 6f 72  |   - This keywor|
00001400  64 20 64 72 61 77 73 20  66 72 6f 6d 20 74 68 65  |d draws from the|
00001410  20 70 72 65 76 69 6f 75  73 20 63 75 72 73 6f 72  | previous cursor|
00001420  20 74 6f 20 74 68 65 0a  20 20 20 20 20 20 20 20  | to the.        |
00001430  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001440  20 20 70 6f 69 6e 74 20  78 78 78 2c 79 79 79 2e  |  point xxx,yyy.|
00001450  20 54 68 65 20 73 61 6d  65 20 63 6f 6e 73 74 72  | The same constr|
00001460  61 69 6e 74 73 20 61 73  20 61 62 6f 76 65 0a 20  |aints as above. |
00001470  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001480  20 20 20 20 20 20 20 20  20 61 70 70 6c 79 2e 0a  |         apply..|
00001490  0a 41 6c 6c 20 74 68 65  73 65 20 63 6f 6d 6d 61  |.All these comma|
000014a0  6e 64 73 20 28 61 6e 64  20 70 61 72 61 6d 65 74  |nds (and paramet|
000014b0  65 72 73 29 20 61 72 65  20 63 61 73 65 20 73 65  |ers) are case se|
000014c0  6e 73 69 74 69 76 65 20  2d 20 69 66 20 74 68 65  |nsitive - if the|
000014d0  79 20 61 72 65 20 6e 6f  74 0a 63 6f 72 72 65 63  |y are not.correc|
000014e0  74 20 74 68 65 79 20 77  69 6c 6c 20 62 65 20 69  |t they will be i|
000014f0  67 6e 6f 72 65 64 20 61  73 20 63 6f 6d 6d 65 6e  |gnored as commen|
00001500  74 73 2e 0a 0a 54 68 65  20 70 72 69 6e 74 20 6f  |ts...The print o|
00001510  70 74 69 6f 6e 20 75 73  65 73 20 52 49 53 43 20  |ption uses RISC |
00001520  4f 53 20 70 72 69 6e 74  65 72 20 64 72 69 76 65  |OS printer drive|
00001530  72 73 2e 20 54 68 65 20  70 72 69 6e 74 69 6e 67  |rs. The printing|
00001540  20 6f 66 20 74 68 65 20  73 68 61 70 65 73 20 69  | of the shapes i|
00001550  73 0a 6e 6f 74 20 64 6f  6e 65 20 66 72 6f 6d 20  |s.not done from |
00001560  74 68 65 20 73 70 72 69  74 65 20 62 75 74 20 66  |the sprite but f|
00001570  72 6f 6d 20 74 68 65 20  6f 75 74 6c 69 6e 65 20  |rom the outline |
00001580  73 6f 20 74 68 65 20 62  65 73 74 20 69 6d 61 67  |so the best imag|
00001590  65 20 70 6f 73 73 69 62  6c 65 0a 73 68 6f 75 6c  |e possible.shoul|
000015a0  64 20 62 65 20 70 72 6f  64 75 63 65 64 20 6f 6e  |d be produced on|
000015b0  20 61 6c 6c 20 70 72 69  6e 74 65 72 73 2e 0a 0a  | all printers...|
000015c0  49 66 20 79 6f 75 20 73  68 6f 75 6c 64 20 63 68  |If you should ch|
000015d0  61 6e 67 65 20 6d 6f 64  65 73 20 77 69 74 68 69  |ange modes withi|
000015e0  6e 20 74 68 65 20 64 65  73 6b 74 6f 70 2c 20 21  |n the desktop, !|
000015f0  50 6f 74 74 65 72 79 20  77 69 6c 6c 20 74 61 6b  |Pottery will tak|
00001600  65 20 61 20 66 65 77 0a  6d 6f 6d 65 6e 74 73 20  |e a few.moments |
00001610  74 6f 20 72 65 61 64 6a  75 73 74 2c 20 6d 61 6b  |to readjust, mak|
00001620  69 6e 67 20 73 75 72 65  20 74 68 61 74 20 74 68  |ing sure that th|
00001630  65 20 73 70 72 69 74 65  20 61 70 70 65 61 72 73  |e sprite appears|
00001640  20 74 68 65 20 73 61 6d  65 20 73 69 7a 65 20 61  | the same size a|
00001650  6e 64 0a 69 6e 20 74 68  65 20 62 65 73 74 20 63  |nd.in the best c|
00001660  6f 6c 6f 75 72 73 20 70  6f 73 73 69 62 6c 65 2e  |olours possible.|
00001670  20 49 74 20 77 69 6c 6c  20 61 6c 73 6f 20 77 61  | It will also wa|
00001680  72 6e 20 79 6f 75 20 6f  6e 20 65 6e 74 65 72 69  |rn you on enteri|
00001690  6e 67 20 28 6f 72 20 73  74 61 72 74 69 6e 67 0a  |ng (or starting.|
000016a0  75 70 20 69 6e 29 20 61  20 6e 6f 6e 2d 32 35 36  |up in) a non-256|
000016b0  20 63 6f 6c 6f 75 72 20  6d 6f 64 65 20 74 68 61  | colour mode tha|
000016c0  74 20 69 74 20 63 61 6e  6e 6f 74 20 64 6f 20 69  |t it cannot do i|
000016d0  74 73 20 62 65 73 74 20  77 68 65 6e 20 64 72 61  |ts best when dra|
000016e0  77 69 6e 67 20 74 68 65  0a 73 68 61 70 65 20 69  |wing the.shape i|
000016f0  6e 20 74 68 61 74 20 6d  6f 64 65 2e 0a 0a 54 68  |n that mode...Th|
00001700  65 20 70 72 6f 67 72 61  6d 20 69 73 20 73 6c 69  |e program is sli|
00001710  67 68 74 6c 79 20 6e 61  75 67 68 74 79 20 69 6e  |ghtly naughty in|
00001720  20 74 68 61 74 20 69 74  20 75 73 65 73 20 52 4d  | that it uses RM|
00001730  41 20 73 70 61 63 65 20  74 6f 20 68 6f 6c 64 20  |A space to hold |
00001740  74 68 65 0a 73 70 72 69  74 65 2e 20 54 68 69 73  |the.sprite. This|
00001750  20 68 61 73 20 6e 65 76  65 72 20 63 61 75 73 65  | has never cause|
00001760  64 20 6d 65 20 61 6e 79  20 70 72 6f 62 6c 65 6d  |d me any problem|
00001770  73 2c 20 61 6e 64 20 49  20 64 6f 6e 27 74 20 73  |s, and I don't s|
00001780  65 65 20 77 68 79 20 69  74 0a 73 68 6f 75 6c 64  |ee why it.should|
00001790  2e 0a 0a 49 20 63 61 6e  20 6f 6e 6c 79 20 73 61  |...I can only sa|
000017a0  79 20 74 68 61 74 20 74  68 65 20 62 65 73 74 20  |y that the best |
000017b0  77 61 79 20 74 6f 20 67  65 74 20 74 6f 20 67 72  |way to get to gr|
000017c0  69 70 73 20 77 69 74 68  20 21 50 6f 74 74 65 72  |ips with !Potter|
000017d0  79 20 69 73 20 74 6f 20  74 72 79 20 69 74 2e 0a  |y is to try it..|
000017e0  54 68 65 20 73 70 72 69  74 65 73 20 70 72 6f 64  |The sprites prod|
000017f0  75 63 65 64 20 63 61 6e  20 62 65 20 76 65 72 79  |uced can be very|
00001800  20 65 66 66 65 63 74 69  76 65 2e 0a              | effective..|
0000180c