====== Vector3i ======
A Vector3i object uses integer values to describe a point in space. Vector3i is part of the [[api:vector3]] family.

===== Class Definition =====
<code cpp>
class Vector3i
{
	Vector3i();
	Vector3i( int a_x, int a_y, int a_z );
	Vector3i( Vector3d v ); // Converts Vector3d to Vector3i

	void Set( int a_x, int a_y, int a_z );
	int Length();
	int SqrLength();

	bool Equals( Vector3i v );

	Vector3d operator + ( Vector3d v );	// These are not yet exported I think
	Vector3d operator - ( Vector3d v );	// ...
	Vector3d operator * ( Vector3d v );	// ...
	Vector3d operator * ( int i );		// ...

	int x;
	int y;
	int z;
};
</code>