Class Matrix


  • public class Matrix
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      Matrix​(int sizex, int sizey)
      Creates a new instance of Matrix
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int get​(int x, int y)  
      int getLowerTop()  
      int getPrecision()  
      int getUpperTop()  
      void readData​(int x, int y, java.awt.image.BufferedImage im)  
      void set​(int x, int y, int value)  
      void setPrecision​(int precision)  
      void setTolerance​(double tolerance)  
      void writeData​(int x, int y, java.awt.image.BufferedImage im)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Matrix

        public Matrix​(int sizex,
                      int sizey)
        Creates a new instance of Matrix
    • Method Detail

      • setPrecision

        public void setPrecision​(int precision)
      • getPrecision

        public int getPrecision()
      • setTolerance

        public void setTolerance​(double tolerance)
      • writeData

        public void writeData​(int x,
                              int y,
                              java.awt.image.BufferedImage im)
      • readData

        public void readData​(int x,
                             int y,
                             java.awt.image.BufferedImage im)
      • get

        public int get​(int x,
                       int y)
      • set

        public void set​(int x,
                        int y,
                        int value)
      • getUpperTop

        public int getUpperTop()
      • getLowerTop

        public int getLowerTop()