class View
{
	public int XRot, YRot, ZRot;
	public double ZPos;

	public View()
	{
		XRot = YRot = ZRot = 0;
		ZPos = 0.0;
	}// View()

	public void clear()
	{
		XRot = YRot = ZRot = 0;
		ZPos = 0.0;
	} // clear()
};
