/// <summary> /// Override of the GetHashCode function. /// </summary> /// <returns>A hashcode of the combined vertices, colors, faces, Uvs, and Normals.</returns> public override int GetHashCode() { return(Vertices.GetHashCode() ^ Colors.GetHashCode() ^ Faces.GetHashCode() ^ Uvs.GetHashCode() ^ Normals.GetHashCode()); }