250
, and operators
are things that have effects, they do something, combining
values in various ways.
x
increases to right and y
increases down.
(
and close )
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 (indentation) is very important and we'll talk more about this next week.
# 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 """
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.
rect()
with a line()
(reference)
and then a curve()
(reference). (Thanks
Michelle for sharing.)
glitch.png
in your sketch
folder, running this code will look like
this: output. (Thanks
Elizabeth Yerkes for asking.)
arc()
command works
(reference). We
didn't look at code for this, but I created an example to
illustrate what I was explaining. Comments in that code
explain what each line does. (Thanks Raghav for asking.)
Everyone learns at a different pace. As we're going through a lesson together (especially when the lesson notes include incremental step-by-step code examples) I encourage you to move at a pace that is comfortable and exciting for you, even if that means getting ahead of me and the class. But, there are certain topics where a bit of background explanation will help a lot before jumping in. For these, I will include some "Please wait" moments throughout my class notes. If you are blazing ahead and encounter one of these, please wait! The next thing you are about to encounter will make more sense with some explanation, which we will do together as a class. Each "wait" request will include suggestions of some other things that you can experiment with as you wait for the class to catch up!
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 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 Processing: "This placeholder that I'm calling treeHeight now contains the value 50." (Later we will use equal signs to ask Processing 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?
Here's a link to what we worked out for this in class.
If you've gotten this far before the rest of the class, wait
here and maybe experiment with using variables for the RGB
portion of the color()
command. Can you create a
sketch that generates randomized shades of blue?
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.