01: package org.cougaar.demo.mandelbrot.v2;
02:
03: /**
04: * This service provides access to a calculator implementation.
05: *
06: * @see MandelbrotCalculator Mandelbrot Set implementation
07: * @see JuliaCalculator Julia Set implementation
08: */
09: public interface FractalService {
10: byte[] calculate(int width, int height, double min_x, double max_x,
11: double min_y, double max_y);
12: }
|