Skip to content

Commit d38fff3

Browse files
committed
Changes to examples
1 parent 6055a5b commit d38fff3

53 files changed

Lines changed: 1123 additions & 53 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
346 Bytes
Binary file not shown.
346 Bytes
Binary file not shown.
65 Bytes
Binary file not shown.

content/examples/Basics/Color/Hue/Hue.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ int[] hue;
1111

1212
void setup()
1313
{
14-
size(400, 400);
14+
size(200, 200);
1515
colorMode(HSB, 360, height, height);
1616
hue = new int[width/barWidth];
1717
noStroke();
-1 Bytes
Binary file not shown.

content/examples/Basics/Color/Hue/applet/Hue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Hue extends PApplet {
2626

2727
public void setup()
2828
{
29-
size(400, 400);
29+
size(200, 200);
3030
colorMode(HSB, 360, height, height);
3131
hue = new int[width/barWidth];
3232
noStroke();

content/examples/Basics/Color/Hue/applet/Hue.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ int[] hue;
1111

1212
void setup()
1313
{
14-
size(400, 400);
14+
size(200, 200);
1515
colorMode(HSB, 360, height, height);
1616
hue = new int[width/barWidth];
1717
noStroke();

content/examples/Basics/Color/Hue/applet/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<object classid="java:Hue.class"
3939
type="application/x-java-applet"
4040
archive="Hue.jar"
41-
width="400" height="400"
41+
width="200" height="200"
4242
standby="Loading Processing software..." >
4343

4444
<param name="archive" value="Hue.jar" />
@@ -55,7 +55,7 @@
5555

5656
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
5757
codebase="http://java.sun.com/update/1.5.0/jinstall-1_5_0_15-windows-i586.cab"
58-
width="400" height="400"
58+
width="200" height="200"
5959
standby="Loading Processing software..." >
6060

6161
<param name="code" value="Hue" />

content/examples/Basics/Math/OperatorPrecedence/OperatorPrecedence.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Operator_Precedence
2+
* Operator Precedence
33
*
44
* If you don't explicitly state the order in which
55
* an expression is evaluated, they are evaluated based

content/examples/Basics/Typography/Words/Words.pde

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
* Words.
33
*
44
* The text() function is used for writing words to the screen.
5-
*
6-
* Created 15 January 2003
7-
* Updated 11 August 2008
85
*/
96

107

0 commit comments

Comments
 (0)