Core files, plus some test files (note that test files may not compile due to recent changes to the core)

This commit is contained in:
francisli
2005-01-27 06:12:40 +00:00
parent 0df6ce1580
commit 159ce2cd05
33 changed files with 1614 additions and 0 deletions

23
core/test/Shape_Primitives.java Executable file
View File

@@ -0,0 +1,23 @@
package test;
import processing.core.*;
/**
*
* @author Francis Li
*/
public class Shape_Primitives extends PMIDlet {
void setup() {
// Shape Primitives
// by REAS <http://www.groupc.net>
size(200, 200);
background(0);
noStroke();
fill(226);
triangle(10, 10, 10, 200, 45, 200);
rect(45, 45, 35, 35);
quad(105, 10, 120, 10, 120, 200, 80, 200);
ellipse(120, 60, 40, 40);
triangle(160, 10, 195, 200, 160, 200);
}
}