/*
systym: the NIH-syndrome javascript library
copyright (c) 2009 Chris Rose-Mathew
*/

//===================================================
// class: Point
//===================================================
// A 3D Point structure
//===================================================
function Point(x, y, z)
{
	//Properties
	this.x = 0;
	this.y = 0;
	this.z = 0;
	if (x)
		this.x = x;
	if (y)
		this.y = y;
	if (z)
		this.z = z;
}

