//Vertex
//
// a 3 dimensional point

public class Vertex {
	public float x, y, z;
	public int   screenX, screenY, screenZ;

	public Vertex(float x, float y, float z) {
		this.x = x;
		this.y = y;
		this.z = z;
	}
}
