Ejemplo n.º 1
0
        public void Vector3dLengthWorks()
        {
            var v = new Vector3d(2, 2, 2);
            double length = v.Length();

            Assert.Equal(3.46, Math.Round(length, 2));
        }