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

22
core/test/BeginShapeTest6.java Executable file
View File

@@ -0,0 +1,22 @@
package test;
import processing.core.*;
/**
*
* @author Francis Li
*/
public class BeginShapeTest6 extends PMIDlet {
void setup() {
beginShape(TRIANGLE_STRIP);
vertex(30, 75);
vertex(40, 20);
vertex(50, 75);
vertex(60, 20);
vertex(70, 75);
vertex(80, 20);
vertex(90, 75);
endShape();
}
}