SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
1.0 KiB

using System.Collections.Generic;
namespace UnityEngine.TestTools.Utils
{
public class Vector3EqualityComparer : IEqualityComparer<Vector3>
{
private const float k_DefaultError = 0.0001f;
private readonly float AllowedError;
private static readonly Vector3EqualityComparer m_Instance = new Vector3EqualityComparer();
public static Vector3EqualityComparer Instance { get { return m_Instance; } }
private Vector3EqualityComparer() : this(k_DefaultError) {}
public Vector3EqualityComparer(float allowedError)
{
this.AllowedError = allowedError;
}
public bool Equals(Vector3 expected, Vector3 actual)
{
return Utils.AreFloatsEqual(expected.x, actual.x, AllowedError) &&
Utils.AreFloatsEqual(expected.y, actual.y, AllowedError) &&
Utils.AreFloatsEqual(expected.z, actual.z, AllowedError);
}
public int GetHashCode(Vector3 vec3)
{
return 0;
}
}
}