public bool Equals(XRPointCloudData other) { return (m_Positions.Equals(other.m_Positions) && m_ConfidenceValues.Equals(other.m_ConfidenceValues) && m_Identifiers.Equals(other.m_Identifiers)); }
/// <summary> /// Tests for equality. /// </summary> /// <param name="other">The other <see cref="XRFaceMesh"/> to compare against.</param> /// <returns>`True` if every field in <paramref name="other"/> is equal to this <see cref="XRFaceMesh"/>, otherwise false.</returns> public bool Equals(XRFaceMesh other) { return (m_Vertices.Equals(other.m_Vertices) && m_Normals.Equals(other.m_Normals) && m_Indices.Equals(other.m_Indices) && m_UVs.Equals(other.m_UVs)); }
public bool Equals(TechBox other) { return(Technologies.Equals(other.Technologies)); }
public bool Equals(EventBox other) { return(EventModifiers.Equals(other.EventModifiers)); }
public bool Equals(DataBox other) { return(IdMap.Equals(other.IdMap) && Provinces.Equals(other.Provinces)); }
public bool Equals(Image <TPixelData> other) { return(Width == other.Width && Height == other.Height && Buffer.Equals(other.Buffer)); }
public bool Equals(NativeArray <T> other) { return(data.Equals(other)); }
public bool Equals(ByteString other) { return(Bytes.Equals(other.Bytes)); }
public bool Equals(IntString other) { return(IntBytes.Equals(other.IntBytes)); }
public NativeArray <float2> PositionSlots; //sorted by y public bool Equals(GroupFormationData other) => PositionSlots.Equals(other.PositionSlots);
public bool Equals(Spline2DVarianceData other) { return(Length.Equals(other.Length) && Equals(Time, other.Time) && Equals(Points, other.Points)); }