shiffman / LearningProcessing

A repo for examples from the book Learning Processing
http://learningprocessing.com
606 stars 276 forks source link

Learning Processing Example 17-5 Rotating Text - Errata Corrige #198

Closed SetupandDraw closed 8 years ago

SetupandDraw commented 8 years ago

Variable's name for the angle is not the same in the book.

float angle; rotate(angle); theta += 0.05;

It should be

angle += 0.05;

shiffman commented 8 years ago

Thank you!