/*
 * VennPoint.java
 *
 * Created on July 11, 2009, 8:39 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

/**
 *
 * @author Khalegh
 */
public class VennPoint {
    double x;
    double y;
    
    int [][] nextPoints;
    double [] nextLen;
    
    /** Creates a new instance of VennPoint */
    public VennPoint(double x, double y) {
        this.x = x;
        this.y = y;
        nextPoints = new int[2][4];
        nextLen = new double[4];
    }
    
}
