mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
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:
Executable
+18
@@ -0,0 +1,18 @@
|
||||
package test;
|
||||
import processing.core.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Francis Li
|
||||
*/
|
||||
public class BezierTest2 extends PMIDlet {
|
||||
|
||||
void setup() {
|
||||
stroke(255, 102, 0);
|
||||
line(30, 20, 80, 5);
|
||||
line(80, 75, 30, 75);
|
||||
stroke(0, 0, 0);
|
||||
bezier(30, 20, 80, 5, 80, 75, 30, 75);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user