250
, and operators are
things that have effects, they do something, combining values
in various ways.
Processing is a programming platform designed for coding education around creative applications. Given that, it is very visual by default. Most (but not all) of our work this semester will have a visual output. In Processing that is primarily arranged around a draw window. The draw window is a grid of pixels. Each one like a little lightbulb that you can turn on or off and control the color of.
The draw grid starts at the top-left corner of the window at
0,0. The numbers that specify an individual pixel are
called coordinates. We almost always refer
to coordinates with x first, then y.
x
increases to right and y
increases down.
On Mac you can use the screencapture utility to measure pixel values. On my computer the shortcut is ⌘-SHIFT-4, then click and drag, then press ESCAPE or else you'll end up with a bunch of funny screenshot fragments!
I know that you can do this on Windows as well but I'm not sure of the shortcut. (Does anyone know?) I know you can definitely use tools like http://pixelzoomer.com/
Color is specified by default with three numbers which
signify components red, green, and blue, or, RGB. Color
specifications can also include a fourth number for
transparency (alpha). Color can also be
specified as HSB (hue, saturation, and brightness). You can
also specify a color value with its hex
code like this: #FF0099
. The first two
characters (in this case FF
) signify the red
component, the second two green, and the third two
characters signify blue.
Processing offers a color selector tool to help you with this. From the menu, specify Tools > Color Selector. You can find the color you want, and then copy/paste its value into your sketch. You can use either the three RGB numbers, or just copy/paste the hex value.
rect(10,10,50,50) rect( 10,10, 50,50 ) rect ( 10, 10, 50, 50 )And you can use this to help make your code more readable. Personally, I find the second line above to be the easiest to read.
The exception to this rule is that spaces at the beginning of the line (called indentation) are very important and we'll talk more about this next week.
Commands use parentheses to
specify parameters, also referred to
as arguments. For example, in your
homework you used commands
like: rect(10,10,50,50)
. The parameters
here are the four numbers.
Make sure your parentheses always come in pairs,
open (
and close )
.
Comments are bits of text that you can put in your code as notes to yourself, to me, or to anyone who might be looking at your code. They are like documentation. They are very useful and you should use them often.
Comments are specified two ways:
# With a hashtag symbol, which go to the end of the line rect(10,10,50,50) # Single line comments can also start at the end of a lineor
""" Or with three quotation marks like this. This marks off a block of text and is useful for entering longer explanations, like describing what the program does for example. At the top of all of your homeworks, please add a comment like this and include your name, date, assignment number, and any other comments. I would also like you to submit your reading notes this way """
Please include a comment (either style) at the top of all your weekly homework assignments with your name, date, and the assignment number (i.e. Week 03). Thank you
Class note style
In class notes I will indicate Processing code by highlighting it in blue and using a fixed-width font:rect(250,250,100,50)Whenever text is formatted in this way, it is valid Python / Processing syntax. I will try my best to also use a fixed width font when specifying code in any emails.
Let's review some people's homework ...
(jump back up to table of contents)What is a variable?
A way to introduce variation on a theme, generalization within a formal structure, or the abstraction of some parts of a process.
The image on the left above is by the artist photographer couple Bernd and Hilla Becher. Examples of the Bechers' work like this one identify a kind of concept, and then stretch that concept by showing us all acceptable variations within that structure. A round gas water tank may have between 6 and 16 support beams, it may be on flat tiles or an elevated platform, it may have a diagonal staircase, it may be covered in a variable number of vertical streaks or it may be blotchy. This is not some objective, Platonic ideal, but rather it somehow portrays a truer representation of that concept because it shows us simultaneously all possible differences, all the ways that the structure can exist in the world.
The image on the right is by the artist Idris Khan. Khan takes collections of the Becher images (and other images), adds transparency, and layers them. In this way, it's like he is creating one image that shows us a fuzzy portrait that depicts the range of all possible items in a collection. One image of a gas tank that somehow portrays all possible gas tanks. We'll start with the Becher approach today and in your homework you will end with Khan's.
treeHeight = 50 rect( 100, 100, 20, treeHeight )
The first line creates the variable. In some programming languages, you have to declare variables before you can use them. In Python, you don't have to do that. You simply create a variable by using it: by using the placeholder name in your code.
An important rule is that you have to give the variable
a value before you can use it. Usually you do this as I
did above, with an equal sign (=
). This is
called variable assignment, and the
equal sign is sometimes called the assignment
operator.
Read that equal sign almost like an arrow pointing from right to left. Variable assignment is a declaration. You are telling Python: "This placeholder that I'm calling treeHeight now contains the value 50." (Later we will use equal signs to ask Python what the value of a variable is, but for now, we are telling.)
treeHeight
is a name I made up. Your
variables can be any name as long as they are not
already special Python Processing words,
like size()
or rect()
. (Some
additional rules about variable names are below.) But
you should use things that will be useful to you and
others later when reading your code.
rect()
draws a tree trunk,
and I wanted to draw another tree with the same height to
the right of it, I could say:
# draw a second tree rect( 150, 100, 20, treeHeight)And now I could change the value of the variable once and both tree heights would change.
A-Z
, a-z
, 0-9
,
and _
)
treeheight
, TREEHEIGHT
, TreeHeight
,
and treeHeight
are all different
variables)
armLength = 100 curveAngle = PI/2 legToArmRatio = 1.5Later in the semester we will be working with other values. For example:
isOn =
False
(This funny word is acutally a very common
term in computer science that comes from George Boole, a
19th century mathematician who invented a formal system of
logic, like an entire arithmetic that operates only on the
values true and false instead of numbers. Booleans use
keywords True
and False
to
specify values.)
name = "Rory"
stopKey = 's'
r = 255 g = 150 b = 150 fill(r,g,b)Or, you could also specify a color with the
color()
command, which creates a color
variable, like this:c = color(255,150,150) fill(c)
img = loadImage("clouds.jpg")And now maybe you hopefully understand a little bit more about what that
loadImage()
line was doing in last
week's homework.
These different kinds of values are called types and we will be talking more throughout the semester about this idea of different kinds of placeholders.
Later in the semester you will even be able to create your own custom variable types.
width
— the width of the draw windowheight
— the height of the draw windowAnd some others we'll talk about next week:
mouseX
— the horizontal part of the mouse positionmouseY
— the vertical part of the mouse positionpmouseX
pmouseY
+
— addition-
— subtraction*
— multiplication/
— divisionellipse( width/2, height/2, 50,50 )
Let's work through an example. Start with this code:
size(600,600) background(255) stroke(100,100,100) fill(255,100,100,100) rect(250,100,100,100) fill(255,255,100,100) rect(250,200,100,100) fill(100,100,255,100) rect(250,300,100,100)
What if we want to make the first square wider? What should we change? Check the Processing reference:
So we need to change the third parameter of
the rect()
command. And since we want the square
to be wider, we'll make that number bigger.
size(600,600)
background(255)
stroke(100,100,100)
fill(255,100,100,100)
rect(250,100,200,100)
fill(255,255,100,100)
rect(250,200,100,100)
fill(100,100,255,100)
rect(250,300,100,100)
OK great. And if we want the other two squares to also be the same width, we could change them too:
size(600,600) background(255) stroke(100,100,100) fill(255,100,100,100) rect(250,100,200,100) fill(255,255,100,100) rect(250,200,200,100) fill(100,100,255,100) rect(250,300,200,100)
But now what if we wanted to play with this width a bit, make
some adjustments. We'd have to keep changing all
three rect()
commands each time. Since we want
them all to have the same width, we can use a variable as a
placeholder for this value. Here's how:
squareWidth = 200 # variable assignment (creates the variable) size(600,600) background(255) stroke(100,100,100) fill(255,100,100,100) rect(250,100,squareWidth,100) fill(255,255,100,100) rect(250,200,squareWidth,100) fill(100,100,255,100) rect(250,300,squareWidth,100)
Now to make tweaks, I can simply change the value
(200
) in the variable assignment, and all my
squares will be drawn using this value. (Note: my variable
name, squareWidth
is arbitrary and can be
anything I want. I could have called
it spaghetti
and I just chose a name that would
be informative to the purpose for which I was using it.)
squareWidth = 200 # variable assignment (creates the variable)
size(600, 600)
background(255)
stroke(100, 100, 100)
fill(255, 100, 100, 100)
rect(250, 100, squareWidth, 120)
fill(255, 255, 100, 100)
rect(250, 200, squareWidth, 100)
fill(100, 100, 255, 100)
rect(250, 300, squareWidth, 100)
If you run that, you'll see that the first square is taller, but now there is an overlap between the first and second square. What if we want the other two squares to automatically adjust their position?
Let's add a variable for the first square's height, and use that to position the second square. Like this:
squareWidth = 200 # variable assignment (creates the variable) firstSquareHeight = 120 size(600, 600) background(255) stroke(100, 100, 100) fill(255, 100, 100, 100) rect(250, 100, squareWidth, firstSquareHeight) fill(255, 255, 100, 100) rect(250, 100 + firstSquareHeight, squareWidth, 100) fill(100, 100, 255, 100) rect(250, 300, squareWidth, 100)
OK, looks good. So now we can adjust just the value of
the variable firstSquareHeight
and it's height will
change, and the second square will move accordingly.
But now we have the same problem with the third square! So we
have to repeat the pattern. The vertical postiion
(y
) of the third square should be the top point of
the first square, plus the height of the first square, plus the
height of the second square. So we can write that out, like an
equation.
squareWidth = 200 # variable assignment (creates the variable)
firstSquareHeight = 300
size(600, 600)
background(255)
stroke(100, 100, 100)
fill(255, 100, 100, 100)
rect(250, 100, squareWidth, firstSquareHeight)
fill(255, 255, 100, 100)
rect(250, 100 + firstSquareHeight, squareWidth, 100)
fill(100, 100, 255, 100)
rect(250, 100 + firstSquareHeight + 100, squareWidth, 100)
Note that if firstSquareHeight
is 100 (it's
original value above), then this equation works out to 300,
which was its original value above as well.
Great. So now we can change only the
variables squareWidth
and firstSquareHeight
and the composition will
adjust accordingly.
x
position of the squares, and have that adjust the position of
all three squares? What if you add two more squares to make a
small cross ("+" sign) and want the composition to adjust
accordingly?
Are you familiar with the classic arcade game Pong? Have a look.
Let's say you were trying to implement Pong for your midterm project. (A totally feasible project by the way!) How may variables would you need? What is moving or changing in this game?
Here's a link to what we worked out for this in class.
random()
. For a detailed explanation, check
the Processing reference
for random().
random()
returns a floating point
(a
number with a decimal point).
Like this:
firstSquareHeight = random(10,300)The parameters to
random()
are minimum and
maximum values. They define a range from
which random()
chooses a number. Like asking a
person to "pick a number between 10 and 300".
squareWidth = random(10,300) # variable assignment (creates the variable) firstSquareHeight = random(10,300) size(600, 600) background(255) stroke(100, 100, 100) fill(255, 100, 100, 100) rect(250, 100, squareWidth, firstSquareHeight) fill(255, 255, 100, 100) rect(250, 100 + firstSquareHeight, squareWidth, 100) fill(100, 100, 255, 100) rect(250, 100 + firstSquareHeight + 100, squareWidth, 100)Stop and run that a few times to see what kinds of variation we've just created.
The homework for this week builds directly on all of these ideas. Good luck.