lab03 : More functions and drawing with Turtle Graphics

num ready? description assigned due
lab03 true More functions and drawing with Turtle Graphics Tue 08/09 01:15PM Wed 08/10 03:00PM

If you find typos or problems with the lab instructions, please report them on Piazza

Goal

The goal of this exercise is to practice test-driven code development using the unittest framework as well as making cool drawings with Turtle Graphics in Python to make particular shapes.

Work with your assigned pair programming partner on this lab. If you do not have one, consult with the instructors before starting.

Setting up your git repo for lab03

Create a joint git repo for you and your partner for lab03, following Step 2 in the lab02 writeup. Assuming that you have done the one time configurations related to your ACMS account, clone your newly created private repo following Step 4 of lab02.

What you’ll be drawing

You’ll be drawing functions to produce your initials. For example, if your name is Pat Brady, and your pair partner is Chris Jimenez, your initials are PB and CJ.

In this case, the functions you’ll write are:

Then, you’ll write two more functions:

In the event that you are paired with someone that shares an initial with you (e.g. if Riley Jones and Chris Jimenez are partners, they share the letter J), you might be able to write fewer functions. Similarly, if Chris Jimenez and Charlie Jones are together, you might be able to share the drawInitialsCJ function. However, we’ll try to avoid that, because we want you to get lots of practice.

You’ll also write a function called go() that draws each members of the pair initials three times each, at different sizes.

Programming, Step-by-Step

You should be sitting WITH YOUR PAIR PARTNER to start this part of the assignment.

Follow these steps to complete the assignment

Step 0: Decide on initial driver/navigator

The initial driver will be the one that is typing on the computer.

Step 1: PLAN your letters on paper

Plan your drawing. For each letter that you and your pair partner are going to draw, start by drawing a bounding box like this on a piece of paper. Trade off: each of you should do the planning for the letters for your OWN name, with your pair partner watching and making helpful suggestions.

BoundingBox.png

For example, for my name, Phill Conrad, I might plan out bounding boxes like these. Here, I’ve chosen each of the important points, and labelled them. Note, though, that these are only examples. I don’t expect that everyone with a P or a C in their name will make the same choices about how to shape the letters. In fact, I hope each of you will make slightly different choices.

BoundingBoxP1.png BoundingBoxC1.png

For instance, as an alternative, I might use bounding boxes like these:

BoundingBoxP2.png BoundingBoxC2.png

Or even these, if I get ambitious, and want to try to make rounded shapes using the turtle’s circle function (note: that’s a link to the documentation!)

BoundingBoxP3.png BoundingBoxC3.png

A warning about that last approach: although it may seem like it isn’t that tough, there are some subtle traps. For example, in the C, what if we are drawing a short, fat C where height > width? Then h-w will be negative, and there may be “issues”. You might find that you would need more than one drawing, one for when (h-w)>0, and a different approach when (h-w)<0, and then use an if/else statement in your drawing code. It might be better to stick to approaches that don’t involve interaction between height and width, which probably means straight lines. If you and your partner are up for the challenge of using curves and circles, you are welcome to try, but I advocate trying the straight line approach FIRST just to be safe.

Once you’ve planned your letters on paper, you are ready to start coding.

Step 2: Driver gets things started on first letter

Bring up IDLE. Create a new file called “lab03.py” in your repo. To do this, in IDLE go to the menu option File-> New. Then continue with the following steps

Step 2c: Start a function definition for first letter

Open the file “lab03.py” provided in the starter code, and start typing a function definition for your first inital.

Example:

def drawA(someTurtle, width, height):
   """
   draw the letter A using someTurtle, with some width and height
   """

  # Find my starting point
  xStart = someTurtle.xcor()
  yStart = someTurtle.ycor()

  # The rest is up to you to figure out

Then, at the top of your file, add this comment, and the import turtle line, and save the file as lab03.py. (The function def for drawA or whatever your first initial is that you are trying to draw goes below that point, as shown:

# lab03.py for Alice Baker and Chris Gaucho
# Draw some initials using turtle graphics

import turtle

def drawA ... etc...

Now at the bottom of your file, make a go() function that you can type in at the Python prompt to make everything happen when you run your program, and outside that function (i.e. NOT indented), a line that creates a turtle. In my example, I called my Turtle fred, but may use any name you like:

That will look like this:

fred = turtle.Turtle()
def go():
     drawA(fred, 50, 100)

The advantage of declaring fred the turtle outside of the function definition is that your Turtle Graphics window will appear on the screen as soon as you hit F5 or select Run from the Run Module menu. That can make it easier to debug your code, because you can arrange your windows so that you can SEE the Turtle move when you type go().

Now save your file, and try running it. You should see a Turtle pop up, but unless/until you put more code in your drawA function, the turtle is going to just sit there.

Your next task: start adding code into your first initial drawing routine so that it draws an initial. My suggestion is to NOT wait until you have the whole thing done to test—instead, work with one or two points at a time, and one or two line segments at a time, and after each one is added, try to run and see if what you have so far is working.

As you code, put a comment before each step, that explains in English what you are doing.

Step 3: Draw the remaining letters

When your first initial looks good, its time to try the next one.

Suppose the second initial is B. Right under your function definition for drawA, but before your function definition for go, add a function definitions for drawB (or whatever your next initial is):

def drawB(datTurtle, width, height):
   """
   draw the letter B using datTurtle, with some width and height
   """

  # Find my starting point
  xStart = datTurtle.xcor()
  yStart = datTurtle.ycor()

  # The rest is up to you to figure out

A word about variable name choices

Note that the parameter name for the turtle in the function definition can be aTurtle, datTurtle, someOlTurtle, t, or really (just about) anything. It helps if the name is suggestive that it is the “role” of a turtle that is drawing our letter. But there is no python “rule” about what this name should be, other than:

Same for width and height–you can call them w and h, or wd and ht, or xsize and ysize: whatever makes sense to you.

All that is required is that:

So calling them (pickle, tomato, cucumber) is not ok—you could make it work, but it is “bad style”.

But (turt, wid, hght) is fine, as is (t, w, h), or (aTurtle, width, height).

Step 4: Testing your first and second letters

To test your first and second drawing function, add code into your go() function, like this:

def go():
     fred = turtle.Turtle()
     drawA(fred, 50, 100)

     fred.forward(25)
     drawB(fred, 50, 100)

Or, you may even want to comment out the drawA call while you work on the B:

def go():
     fred = turtle.Turtle()
     # drawA(fred, 50, 100)

     drawB(fred, 50, 100)

In any case, repeat this for all of the initials you need to draw.

AS YOU WORK, SWITCH DRIVER AND NAVIGATOR FREQUENTLY. Each member of the team should be the driver for the function for at least one their own initials.

If you are Mike McMahaon working with Martha Masters, then you’ll be really in luck: one function is all you need. In that case, you will have to switch in the middle of that one function.

Depending on how many letters you share in common with your pair partner, you’ll need between one and four letter drawing functions. Repeat the steps above until you have all of those done, and switch driver/navigator between each function. Then you are ready for the combining steps.

Step 5: The step where you combine things

In this step, you are going to write either one or two new functions, for each of the initials of the members of the pair.

Again, if it is Mike McMahon working with Martha Masters, you’ll need only one function:

def drawMM(aTurtle, letterWidth, letterHeight, spacing):
   """
   draw the letters MM, using aTurtle, and the width and height given.  Use spacing * width as the space between letters.
   For example, if spacing is 0.5, then the space between the right edge of the first M and the left edge of the second one
   should be half of the letter width.  If spacing is 1, it should be the same as the letter width, and if it is 2, it should be
   double the letter width.

   """

   # draw the first M
  
   drawM(aTurtle, letterWidth, letterHeight)

   # do something here to space out the letters--you figure it out


   # draw the second M

   drawM(aTurtle, letterWidth, letterHeight)

Your functions will look just like these, except that probably you’ll have two different letters, e.g. drawP() and drawC() for Phill Conrad. And you have to figure out the thing to do in between the letters (it’s not that hard.)

But probably, you’ll need two or three of these, because you and your pair partner probably don’t have the same initials. So write the functions you need. Add them after your draw functions for each letter, but before your go() function.

AS YOU WORK, SWITCH DRIVER AND NAVIGATOR FREQUENTLY. Each member of the team should be the driver for the function for their own initials.

Then, modify your go() function so that it draws each member of your team’s initials, at least three times each, with DIFFERENT widths, heights, and spacings. You’ll need to pick up the pen between calls to drawMM() or drawPC() or drawJH() or whatever. And choose starting points (using t.goto(x,y)) so that all of the initials are on the screen, and none of them overlap.

When that’s done, you are ready to do your finalcheck list on your code before submission, and then use the git command line to submit.

Step 6: Final Checklist

Here’s your final checklist.

  1. Do you have a comment at the top of your file?
  2. Do you have a draw function for each of your initials?
  3. Does each of these functions have three parameters, a turtle, a width and a height?
  4. Does each of these have a reasonable docstring (see discussion in step 2.)
  5. Does each of your letter drawing functions have parameters names that are reasonable? (See pickle, tomato, cucumber discussion at step 5.)
  6. Does each of your letter drawing functions have comments throughout explaining the steps you are taking to draw, in plain English? (See discussion in Step 2, and the example code from lecture.)
  7. Does each letter drawing function assume that the turtle starts at lower left, pen down, pointing right, and leave the turtle at lower right, pointing right, pen down?
  8. Do you have a draw function for each pair of initials?
  9. Do your draw functions work for pairs of initials
  10. Does each of your draw functions for pairs of initial have reasonable variables names, and good comments?
  11. Does each of your draw functions have a reasonable docstring?
  12. Is the spacing between letters handled correctly?
  13. Do you have a go() function?
  14. Does your go() function have a reasonable docstring?
  15. Does your go() function call your initial functions, three times each, with different parameter values for width and height each time?
  16. Do all the initials appear in each of the three appearances, not overlapping each other, and do they all appear on the screen?

If so, you are ready to submit!

NOTE: Only one member of each pair has to submit, but BOTH members of the pair are responsible to make sure the submit happens.

Step 7: Submit to github

To submit, use the command line tools git add, git commit and git push. You must only push working versions of your code. Make sure your code is pushed to git by navigating to your repo on github.com and viewing your latest changes.

Congratulations on finishing lab 3!!! Hope you had fun with turtle graphics!

Additional Fun with Turtle

When you are finished with the main part of lab03, here is an extension that you can start working on, and continue to contribute to throughout SPIS.

You are invited to create a public github repo under the ucsd-cse-spis-2016 organization with this naming convention:

In this repo, you can add files that provide drawing routines to draw whatever you like.

You can use the code from https://github.com/ucsd-cse-spis-2016/spis16-lecture-0809 as a model.

Then, try looking at the code from some of your fellow classmates public spis16-drawings... repos.

See if you can copy some of their files into your repo (add a comment indicating where the code came from, e.g.

# This file copied from spis16-drawings-Alex-Chris

Then try using import to get access to those functions, and use them in your own drawings.

See how creative you can get in terms of combining different drawings together from many other fellow SPISers.

Put the code for these additional “mash-ups” in the same spis16-drawings-Name-Name repo, just perhaps in a different python file, e.g. mashups.py.