public VertexEntry(Vector pos, Vector norm, Coords2d coords) { position = pos; normal = norm; texCoords = coords; }
public bool Matches(Vector other) { return other.x == x && other.y == y && other.z == z; }