You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
502 B
Java

package deepZoom.renderer;
import digisoft.custom.util.geom.DoubleDouble;
/**
* @author Zom-B
* @since 1.0
* @date May 2, 2009
*/
public class PointInfo {
public DoubleDouble px;
public DoubleDouble py;
public boolean inside;
public long lastIter;
public DoubleDouble lastZX = new DoubleDouble();
public DoubleDouble lastZY = new DoubleDouble();
protected int antialiasFactor;
protected int antialiasReach;
protected int antialiasArea;
}