예제 #1
0
        public void GetHashCode_SameForEqual()
        {
            var a = new Ray3(new Vector3(1, 2, 3), Vector3.UnitY);
            var b = new Ray3(new Vector3(1, 2, 3), Vector3.UnitY);

            Assert.AreEqual(a.GetHashCode(), b.GetHashCode());
        }