function texcoord(in_u, in_v)
{
	this.u=in_u;
	this.v=in_v;
}

texcoord.prototype.clone = function()
{
	return new texcoord(this.u, this.v);
}

