Walker.java

//package dmc;

/**
* A six dimensional walker.
*
* @author Guenter Haucke
*/
public class Walker
{
/**
* The position of the walker.
*/
public double x;
public double y;
public double z;
public double x2;
public double y2;
public double z2;


/**
* Constructor. Sets x to the value given.
*
* @param x The value of x to initialize the Walker's position.
*/
public Walker(double x,double y,double z,double x2, double y2, double z2)
{
this.x = x;
this.y = y;
this.z = z;
this.x2 = x2;
this.y2 = y2;
this.z2 = z2;

}
}