mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 21:29:17 +01:00
27 lines
657 B
Plaintext
27 lines
657 B
Plaintext
import processing.core.*;
|
|
import processing.xml.*;
|
|
|
|
import java.applet.*;
|
|
import java.awt.Dimension;
|
|
import java.awt.Frame;
|
|
import java.awt.event.MouseEvent;
|
|
import java.awt.event.KeyEvent;
|
|
import java.awt.event.FocusEvent;
|
|
import java.awt.Image;
|
|
import java.io.*;
|
|
import java.net.*;
|
|
import java.text.*;
|
|
import java.util.*;
|
|
import java.util.zip.*;
|
|
import java.util.regex.*;
|
|
|
|
public class bug481 extends PApplet {
|
|
public void setup() {
|
|
Class[] abc = new Class[]{Applet.class};
|
|
noLoop();
|
|
}
|
|
static public void main(String args[]) {
|
|
PApplet.main(new String[] { "--bgcolor=null", "bug481" });
|
|
}
|
|
}
|