Source code for PlanarMap.java

What follows is the highlighted source code with comments. You can also download this file directly: PlanarMap.java.

/*
 * This work by W. Patrick Hooper <wphooper@gmail.com> is free of known copyright restrictions.
 * The work is in the public domain.
 * 
 * Author's website: <a href="http://wphooper.com">http://wphooper.com</a>. 
 */

package geometry;

import number.Complex;

/**
 * This interface represents a map from the complex plane to itself.
 * 
 * @author W. Patrick Hooper
 */
public interface PlanarMap {
    /** Apply the map to the point z. */
    Complex map(Complex z);
}
HOOPER >>>>> JAVA TUTORIAL
Last modified on August 17, 2018.
[check html] [check css]