- Download the AmoebaWorld code from the class web page using
a web browser or wget:
wget http://wb/ip/code/World.py
wget http://wb/ip/code/AmoebaWorld.py
- Run the program by typing python AmoebaWorld.py
- Press the Run button. An amoeba should appear at the
origin and the move along the line for 10 seconds. The
path of the amoeba is determined by the parametric equations in
the text fields in the lower right. Initially, these equations
are
|
|
|
(1) |
|
|
|
|
Notice that as the program runs, it prints the values of , , and
in the window where you ran the program.
- In the text field for , type the expression sin(t)
(notice that I am using italics for mathematical notation and a
``typewriter'' font for Python code). Run the program again. The
amoeba should trace out a sine curve.
- Translate each of the following pairs of parametric equations
into Python code, type them into the text fields, and run the
program.
|
|
|
(2) |
|
|
|
|
|
|
|
(3) |
|
|
|
|
|
|
|
(4) |
|
|
|
|
|
|
|
(5) |
|
|
|
|
- At some point, it becomes inconvenient to type Python code
in text fields. We would rather write the code and store it
in a file. For an example of how to do this, download
wget http://wb/ip/code/MyAmoeba.py
Run the program by typing python MyAmoeba.py. The amoeba
should traverse a figure eight. If you get bored, you can interrupt
the program by moving the mouse to the window where you started the
program and pressing Control-C.
Use emacs or some other text editor to edit this file.
You might not understand all of it, but there are comments that
explain what it does. You can change the behavior of the amoeba
by changing the lines that compute and . Change the
program so that it computes one of the examples from the previous
section, then save the file and restart the program.
Remember to save the file and restart the program each time you
make a change.
- By now you may have made some unintentional mistakes, but now
it is time to make some intentional ones.
- In the line 9 * sin(t) * cos(t), delete one of the
multiplication operators. Save the file and run the program
again. What error message do you get?
- Delete one or both of the parentheses in sin(t).
What happens?
- Replace the parentheses with square brackets ([]).
- Change the indentation of one of the lines so that it
doesn't line up any more. What's the error message?
- Refer to a variable that doesn't exist, or misspell the
name of one that does.
- If there's anything else you can think of that you might
do by accident, do it on purpose now.
- If a circle of radius rolls around the outside of
a circle with radius , a point on the outer circle traces a
curve called an epicycloid.
For formally, an epicycloid
is defined by the following parameteric equations:
|
|
|
(6) |
|
|
|
|
Modify MyAmoeba.py so that the Amoeba traces an epicycloid.
You should define variables named a and b; try out
different values and see what you get.
There are a couple of subexpressions in the formulas that appear
more than once, like and . You might want to assign
these values to temporary variables so that the program only has to
evaluate them once.
- Check out the other curves in the ``Famous Curves Index'' at
http://www-gap.dcs.st-and.ac.uk/~history/Curves/Curves.html
Look them over and see if there is one you want to implement. In
some cases the web page provides parametric equations, but in other
cases you might have to convert from one of the other formats. Once
you have chosen your favorite curve, modify MyAmoeba to draw
it. You might have to adjust the parameters so that the curve looks
good and uses a reasonable amount of the ``slide''.
- Add a comment to the program to explain which curve it is
drawing and any other information you think is important.
- Put a comment with your name in it at the beginning of the
program. Print a copy of the program by following the instructions in
Chapter 3 of the Olinux manual.