A minimal non-Cougaar application that computes the Mandelbrot Set image
data and either writes it to a file or pops up a UI.
To write to a file, specify a "file=String" argument. If no file
is specified then the image will be displayed in a popup Swing UI.
Usage is:
java \
-classpath lib/mandelbrot.jar \
org.cougaar.demo.mandelbrot.v0.MandelbrotPopup \
[ARGS]
Supported arguments are:
- width=integer
- height=integer
- x_min=double
- x_max=double
- y_min=double
- y_max=double
- file=String
|