mirror of
https://github.com/processing/processing4.git
synced 2026-02-10 00:59:40 +01:00
16 lines
248 B
Java
Executable File
16 lines
248 B
Java
Executable File
package test;
|
|
import processing.core.*;
|
|
|
|
/**
|
|
*
|
|
* @author Francis Li
|
|
*/
|
|
public class PointTest extends PMIDlet {
|
|
void setup() {
|
|
point(30, 20);
|
|
point(85, 20);
|
|
point(85, 75);
|
|
point(30, 75);
|
|
}
|
|
}
|