BEPUphysics.CollisionTests.CollisionAlgorithms.TriangleSpherePairTester.Initialize C# (CSharp) Метод

Initialize() публичный Метод

Initializes the pair tester.
public Initialize ( ConvexShape convex, TriangleShape triangle ) : void
convex BEPUphysics.CollisionShapes.ConvexShapes.ConvexShape Convex shape to use.
triangle BEPUphysics.CollisionShapes.ConvexShapes.TriangleShape Triangle shape to use.
Результат void
        public override void Initialize(ConvexShape convex, TriangleShape triangle)
        {
            this.sphere = (SphereShape)convex;
            this.triangle = triangle;
        }