Class MandelbrotMatrix

    • Field Detail

      • xoffset

        private final double xoffset
      • yoffset

        private final double yoffset
      • xsize

        private final double xsize
      • ysize

        private final double ysize
      • iterations

        private final int iterations
    • Constructor Detail

      • MandelbrotMatrix

        public MandelbrotMatrix()
      • MandelbrotMatrix

        public MandelbrotMatrix​(int rows,
                                int columns)
      • MandelbrotMatrix

        public MandelbrotMatrix​(int rows,
                                int columns,
                                int iterations)
      • MandelbrotMatrix

        public MandelbrotMatrix​(int rows,
                                int columns,
                                int iterations,
                                double xoffset,
                                double yoffset,
                                double xsize,
                                double ysize)
    • Method Detail

      • getDouble

        public double getDouble​(long row,
                                long column)
      • setDouble

        public void setDouble​(double value,
                              long row,
                              long column)
      • getDouble

        public double getDouble​(int row,
                                int column)
      • setDouble

        public void setDouble​(double value,
                              int row,
                              int column)
      • calc

        public static final int calc​(Complex c,
                                     int iterations)