Posts by
Drawing a Square
This tutorial is based off an excerpt from The Absolute Beginner’s Guide to Coding Using Scratch hard copies and digital copies can be purchased on Amazon Drawing in Scratch is a lot like drawing with a pen and paper, except in order to draw something in Scratch, you have to tell the computer in which […]
Scratch – Basic Program
This tutorial is based off an excerpt from The Absolute Beginner’s Guide to Coding Using Scratch hard copies and digital copies can be purchased on Amazon On the Scratch website, click the Create menu item at the top of the web page. When you first open Scratch you will see something similar to the sketch […]
Functions
Processing has several functions like ellipse(), rect(), and fill() Those functions are provided by the makers of Processing to make our life easier when drawing and coloring shapes. We can also make our own functions! Functions are great for making reusable code. If we perform the same task over and over again, we can simply […]
For Loops
For loops do the exact same thing as while loops except they are formatted differently. Just like while loops, we use for loops to make the boring, repetitive tasks of programming a lot easier. Some programmers like for loops better than while loops because they are more readable, while other programmers like while loops better […]