September 2015
Beginner
564 pages
13h 28m
English
I could entertain future historians by saying I think all this superstring stuff is crazy.
—Richard Feynman
In this chapter:
– Storing text in a String object
– Basic String functionality
– Creating and loading fonts
– Displaying text
In Chapter 15, I discussed a new object data type built into the Processing environment for dealing with images — PImage. In this chapter, I will introduce another new data type, another class you get for free with Processing, called String.
The String class is not a completely new concept. You have dealt with strings before whenever you have printed some text to the message window or loaded an image from a file.
Nevertheless, although I have used a string here and there, I have yet ...