/// <summary> /// Determine whether two stripe counts will result in the same Vbo data shape, once "empty" dimensions are removed. /// </summary> /// <param name="u">The first stripe count object.</param> /// <param name="v">The second stripe count object.</param> /// <returns>True if the two stripe counts will result in the same Vbo data shape, once "empty" dimensions are removed, /// otherwise false.</returns> public static bool EquiAxial(this Vector3i u, Vector3i v) => u.DataFormat() == v.DataFormat();