java.lang.Object
org.woehlke.computer.kurzweil.commons.model.turing.Point

public class Point
extends java.lang.Object
Mandelbrot Set drawn by a Turing Machine. (C) 2006 - 2015 Thomas Woehlke. https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html
Author:
Thomas Woehlke Date: 04.02.2006 Time: 23:47:05
  • Constructor Summary

    Constructors
    Constructor Description
    Point()  
    Point​(int x, int y)  
    Point​(Point p)  
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(java.lang.Object o)  
    int getHeight()  
    int getWidth()  
    int getX()  
    int getY()  
    int hashCode()  
    void moveDown()  
    void moveLeft()  
    void moveRight()  
    void moveUp()  
    void setX​(int x)  
    void setY​(int y)  
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Point

      public Point()
    • Point

      public Point​(Point p)
    • Point

      public Point​(int x, int y)
  • Method Details

    • moveUp

      public void moveUp()
    • moveRight

      public void moveRight()
    • moveDown

      public void moveDown()
    • moveLeft

      public void moveLeft()
    • getWidth

      public int getWidth()
    • getHeight

      public int getHeight()
    • getX

      public int getX()
    • setX

      public void setX​(int x)
    • getY

      public int getY()
    • setY

      public void setY​(int y)
    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object