Skip to content

Commit ec356c6

Browse files
committed
Example updates for v154
1 parent 4662ae4 commit ec356c6

File tree

25 files changed

+39
-40
lines changed

25 files changed

+39
-40
lines changed

content/examples/3D/Form/BrickTower/BrickTower.pde

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Brick Tower
33
* by Ira Greenberg.
4-
*
4+
*
55
* 3D castle tower constructed out of individual bricks.
66
* Uses the PVector and Cube classes.
77
*/
@@ -57,4 +57,3 @@ void draw(){
5757
}
5858
}
5959

60-
Binary file not shown.

content/examples/Basics/Image/GettingStarted_Image/GettingStarted_Image.pde renamed to content/examples/Basics/Image/LoadDisplayImage/LoadDisplayImage.pde

File renamed without changes.
Binary file not shown.

content/examples/Basics/Image/GettingStarted_Image/applet/GettingStarted_Image.java renamed to content/examples/Basics/Image/LoadDisplayImage/applet/LoadDisplayImage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import java.util.zip.*;
1313
import java.util.regex.*;
1414

15-
public class GettingStarted_Image extends PApplet {
15+
public class LoadDisplayImage extends PApplet {
1616

1717
/**
1818
* Load and Display
@@ -39,6 +39,6 @@ public void draw() {
3939
}
4040

4141
static public void main(String args[]) {
42-
PApplet.main(new String[] { "GettingStarted_Image" });
42+
PApplet.main(new String[] { "LoadDisplayImage" });
4343
}
4444
}

content/examples/Basics/Image/GettingStarted_Image/applet/GettingStarted_Image.pde renamed to content/examples/Basics/Image/LoadDisplayImage/applet/LoadDisplayImage.pde

File renamed without changes.

content/examples/Basics/Image/GettingStarted_Image/applet/index.html renamed to content/examples/Basics/Image/LoadDisplayImage/applet/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- charset must remain utf-8 to be handled properly by Processing -->
66
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
77

8-
<title>GettingStarted_Image : Built with Processing</title>
8+
<title>LoadDisplayImage : Built with Processing</title>
99

1010
<style type="text/css">
1111
/* <![CDATA[ */
@@ -32,16 +32,16 @@
3232
</head>
3333
<body>
3434
<div id="content">
35-
<div id="GettingStarted_Image_container">
35+
<div id="LoadDisplayImage_container">
3636

3737
<!--[if !IE]> -->
38-
<object classid="java:GettingStarted_Image.class"
38+
<object classid="java:LoadDisplayImage.class"
3939
type="application/x-java-applet"
40-
archive="GettingStarted_Image.jar"
40+
archive="LoadDisplayImage.jar"
4141
width="200" height="200"
4242
standby="Loading Processing software..." >
4343

44-
<param name="archive" value="GettingStarted_Image.jar" />
44+
<param name="archive" value="LoadDisplayImage.jar" />
4545

4646
<param name="mayscript" value="true" />
4747
<param name="scriptable" value="true" />
@@ -58,8 +58,8 @@
5858
width="200" height="200"
5959
standby="Loading Processing software..." >
6060

61-
<param name="code" value="GettingStarted_Image" />
62-
<param name="archive" value="GettingStarted_Image.jar" />
61+
<param name="code" value="LoadDisplayImage" />
62+
<param name="archive" value="LoadDisplayImage.jar" />
6363

6464
<param name="mayscript" value="true" />
6565
<param name="scriptable" value="true" />
@@ -97,7 +97,7 @@
9797
</p>
9898

9999
<p>
100-
Source code: <a href="GettingStarted_Image.pde">GettingStarted_Image</a>
100+
Source code: <a href="LoadDisplayImage.pde">LoadDisplayImage</a>
101101
</p>
102102

103103
<p>

content/examples/Basics/Image/GettingStarted_Image/applet/loading.gif renamed to content/examples/Basics/Image/LoadDisplayImage/applet/loading.gif

File renamed without changes.

content/examples/Basics/Image/GettingStarted_Image/data/jelly.jpg renamed to content/examples/Basics/Image/LoadDisplayImage/data/jelly.jpg

File renamed without changes.

content/examples/Basics/Image/RequestImage/RequestImage.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void drawImages(){
5959
}
6060
}
6161

62-
// loading animation
62+
// Loading animation
6363
void runLoaderAni(){
6464
// Only run when images are loading
6565
if (!checkLoadStates()){

0 commit comments

Comments
 (0)