public bool Compare(ref idCQuat a, float epsilon) { return ( idMath.Fabs(x - a.x) <= epsilon && idMath.Fabs(y - a.y) <= epsilon && idMath.Fabs(z - a.z) <= epsilon); }
public bool Compare(ref idCQuat a, float epsilon) { return( idMath.Fabs(x - a.x) <= epsilon && idMath.Fabs(y - a.y) <= epsilon && idMath.Fabs(z - a.z) <= epsilon); }
//public float this[int index] { get { return 0; } } #endregion #region Compare public bool Compare(ref idCQuat a) { return (x == a.x && y == a.y && z == a.z); }
//public float this[int index] { get { return 0; } } #endregion #region Compare public bool Compare(ref idCQuat a) { return(x == a.x && y == a.y && z == a.z); }