You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: chp17_strings/exercise_17_08_text_in_3D/exercise_17_08_text_in_3D.pde
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -2,35 +2,35 @@
2
2
// Daniel Shiffman
3
3
// http://www.learningprocessing.com
4
4
5
-
//Exercise 17-8: Display text that is centered and rotated to appear flat. Have the text scroll off into the distance.
5
+
//http://www.learningprocessing.com
6
6
7
+
// Exercise 17-8: Display text that is centered and rotated to appear flat. Have the text scroll off into the distance.
7
8
8
-
//“\n” means “new line.” In Java, invisible characters can be incorporated into a String with an “escape sequence”-a backward slash “\” followed by a character.
9
+
// \n means new line. In Java, invisible characters can be incorporated into a String with an “escape sequence”-a backward slash “\” followed by a character.
9
10
// Here are a few more.
10
11
// \n-new line
11
12
// \r-carriage return
12
13
// \t-tab
13
14
// \'-single quote
14
15
// \”-double quote
15
-
// \\-backward slash
16
+
// \-backward slash
16
17
17
18
String info ="A long long time ago\nIn a galaxy far far away";
0 commit comments