At its core, the objective of this class is to teach you how to create software, and in the process to uncover how an embodied, hands-on practice creating software affords you new insights into how software operates unto itself, and how it interfaces with the world by shaping and mediating other social and cultural activities.
Hopefully in some of your other classes at The New School, you've had the opportunity to study critical perspectives on what software & digital machinery have wrought in the world: how they mediate so many social, cultural, political and economic aspects of life today. In this class, we will augment these critical perspectives by emphasizing production work to learn first-hand what software does, how it operates, and how it makes us think. By learning how to develop software yourself through the practice of computer programming, you will gain an intimate understanding of the core building blocks that comprise nearly all software in use today.
There are some programming techniques that you will learn in
this class that won't be directly applicable to all
of your future coding work (like specific programming
language syntax), but hopefully everything that you
learn will be applicable to future work in the sense that
you will be learning the core constructs of computer
programming in a foundational sense. Later on when working
with other technical production tools, you should be able to
recognize these core constructs such as: if
statements, loops, arrays, and fundamental concepts of
computation like variability and repetition.
In learning how to create computer programs, you will experience the thought processes and ideologies that come with software thinking — we might say, software epistemology. You will experience what it is like to discipline your mind into thinking like a computer programmer, which, oddly, also entails disciplining your mind into "thinking" like a computer — although whether we can call what computers do thinking is the subject of deep, long-standing, political, and philosophical debate. Understanding these core building blocks of computer programs then is a way of seeing how a world mediated by software appears, or more metaphorically, we might say: how computers see the world.
In a world that seems everywhere mediated by software, these skills are valuable in their own right. But beyond the utility or "marketable skills" of this practice, hopefully you will gain hands-on knowledge that you can bring back to other critical studies of the social, cultural, and political aspects of computer programs.
size(300,300) stroke(0,0,255) fill(0,255,0) rect(50,50,200,200)
x
, and the vertical dimension is always
specified second and is referred to as y
.
x
increases as you move to the right,
and y
increases as you move down.
x=2,
y=3
. Remember, we start counting
from 0
.
x=30
and y=15
? That seems about right.
Computers require us to be precise. But we can comply with that precision while also being loose and approximate in achieving the goals that we're working toward. We can leave space to play, experiment, estimate, and work by trial-and-error.
rect()
.
The numbers in parenthesis are
called parameters and their order is very
important. The reference will tell you what the various
parameters do. In this case, the reference explains that the
first parameter is the "x-coordinate of the
rectangle", the second parameter specifies
the y
coordinate, the third is the width of the
shape, and the fourth is the height.
colorMode()
command. Let's modify the above example:
size(300,300)
stroke(0,0,255)
fill(150,150,255)
rect(50,50,200,200)
size(300,300)
stroke(0,0,255)
fill(150,150,255,50)
rect(50,50,200,200)
size(300,300)
stroke(0,0,255)
fill(150,150,255,50)
rect(50,50,200,200)
ellipse(250,250,50,50)
Notice that the overlap is slightly darker.
size(300,300) stroke(0,0,255) fill(150,150,255,255) # 255 is equivalent to totally opaque rect(50,50,200,200) ellipse(250,250,50,50) triangle(250,250,250,300,300,250)
( )
# Using a hashtag symbol creates a single line comment, like thisSingle-line comments can also start midway through a line
rect(10,10,10,10) # like this
""" Using three quotation marks, you can create a comment for a block of text, like this. Use this at the top of your files to include your name, date, and what this code is for (such as homework week number or project) """
rect(250,250,100,50)Whenever text is formatted in this way, it is valid Python Processing syntax. You should be able to copy/paste it into your PDE. I will try my best to also use this formatting when specifying code in my emails, but I can't promise total consistency there as that can get quite tedious.
img = loadImage("YOUR-IMAGE-FILENAME.jpg") image(img, 0, 0)
PImage img
. This was a mistake on my
part. That line would cause an error. Apologies to anyone
who got stuck on this.
0, 0
specifies the x and y location
of where in the window to place the image. If you
want to control the size of the image, modify the 3rd line
to look like this:
image(img, 0, 0, 50, 25)
In this case, the image would be 50
pixels wide and 25 pixels tall.