Search this site
Embedded Files
Skip to main content
Skip to navigation
Intro to Coding
Home
NYU Dan Shiffman Lessons
Chapter 0: Getting Started
Chapter 1: Pixels
Chapter 2: Processing
Chapter 3: Interaction
Chapter 4: Variables
Chapter 5: Conditionals
Chapter 6 : Loops
Chapter 7: Functions
Chapter 8: Objects
Chapter 9: Arrays
Chapter 13: Map Function
Chapter 17: Text
Chapter 20: Sound
Extra Challenges
1. Saving to OpenProcessing
2. Alpha
3. Arcs
4. Fonts!
5. Random Function
6. Using IMAGES
Drawing Programs
Extra Challenges
Jer Thorp Lessons
Why Processing + Jer Thorp
Lesson # 1/#2 - Drawing Tools
Lesson # 3 - Grassy
Lesson # 4 Random Wheel
Lesson #5 -Ants
Lesson # 6 - Ants Drawing
Lesson # 7 - Image Paint
Lesson # 8 Drawing Tool
SparkFun Challenges
Lesson #1: Using Camera
Lesson #2: Using Noise
Lesson #3: Image Collage
Lesson #4: Fun Text
Lesson#5 A Maze Game
Final Project Ideas
Final Project Ideas- Microcontroller
Final Project Examples
More Course info
Example Quiz
Intro to Coding
Home
NYU Dan Shiffman Lessons
Chapter 0: Getting Started
Chapter 1: Pixels
Chapter 2: Processing
Chapter 3: Interaction
Chapter 4: Variables
Chapter 5: Conditionals
Chapter 6 : Loops
Chapter 7: Functions
Chapter 8: Objects
Chapter 9: Arrays
Chapter 13: Map Function
Chapter 17: Text
Chapter 20: Sound
Extra Challenges
1. Saving to OpenProcessing
2. Alpha
3. Arcs
4. Fonts!
5. Random Function
6. Using IMAGES
Drawing Programs
Extra Challenges
Jer Thorp Lessons
Why Processing + Jer Thorp
Lesson # 1/#2 - Drawing Tools
Lesson # 3 - Grassy
Lesson # 4 Random Wheel
Lesson #5 -Ants
Lesson # 6 - Ants Drawing
Lesson # 7 - Image Paint
Lesson # 8 Drawing Tool
SparkFun Challenges
Lesson #1: Using Camera
Lesson #2: Using Noise
Lesson #3: Image Collage
Lesson #4: Fun Text
Lesson#5 A Maze Game
Final Project Ideas
Final Project Ideas- Microcontroller
Final Project Examples
More Course info
Example Quiz
More
Home
NYU Dan Shiffman Lessons
Chapter 0: Getting Started
Chapter 1: Pixels
Chapter 2: Processing
Chapter 3: Interaction
Chapter 4: Variables
Chapter 5: Conditionals
Chapter 6 : Loops
Chapter 7: Functions
Chapter 8: Objects
Chapter 9: Arrays
Chapter 13: Map Function
Chapter 17: Text
Chapter 20: Sound
Extra Challenges
1. Saving to OpenProcessing
2. Alpha
3. Arcs
4. Fonts!
5. Random Function
6. Using IMAGES
Drawing Programs
Extra Challenges
Jer Thorp Lessons
Why Processing + Jer Thorp
Lesson # 1/#2 - Drawing Tools
Lesson # 3 - Grassy
Lesson # 4 Random Wheel
Lesson #5 -Ants
Lesson # 6 - Ants Drawing
Lesson # 7 - Image Paint
Lesson # 8 Drawing Tool
SparkFun Challenges
Lesson #1: Using Camera
Lesson #2: Using Noise
Lesson #3: Image Collage
Lesson #4: Fun Text
Lesson#5 A Maze Game
Final Project Ideas
Final Project Ideas- Microcontroller
Final Project Examples
More Course info
Example Quiz
Fonts!
Text Functions
textSize(#);
textAlign(CENTER);
text(key, x,y);
Font Functions
1. Click file TOOLS then CREATE FONT
2. Choose font & copy the font's filename
3. Create a PFont font; variable outside of setup()
4. Load the font in setup by writing font = loadFont("Herves-10.vlw");
5.Use the textFont(font); in setup //built in variables
6. In draw() call the function ---> text("Hi", x location, y location); //whatever you want it to say
Report abuse
Report abuse