BEPUutilitiesTests.BoundingTests.Test C# (CSharp) 메소드

Test() 공개 정적인 메소드

public static Test ( ) : void
리턴 void
        public static void Test()
        {
            TestBoxRayCorrectness();

            const int iterations = 1000000;
            Helper.Test("Box-Ray SIMD", TestBoxRaySIMD, iterations);
            Helper.Test("Box-Ray Scalar", TestBoxRayScalar, iterations);
        }

Usage Example

예제 #1
0
 static void Main(string[] args)
 {
     AllocatorTests.TestChurnStability();
     BoundingTests.Test();
     Console.WriteLine();
     AffineTests.Test();
     Console.WriteLine();
     Vector3Tests.Test();
     Console.WriteLine();
     Matrix3x3Tests.Test();
     Console.WriteLine();
     Matrix4x4Tests.Test();
 }