BEPUphysics.CollisionTests.Contact.ToString C# (CSharp) Method

ToString() public method

Outputs the position, normal, and depth information of the contact into a string.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return "Position: " + Position + " Normal: " + Normal + " Depth: " + PenetrationDepth;
        }