Box2D.Collision.RayCastInput.Set C# (CSharp) Method

Set() public method

public Set ( RayCastInput rci ) : void
rci RayCastInput
return void
        public void Set(RayCastInput rci)
        {
            P1.Set(rci.P1);
            P2.Set(rci.P2);
            MaxFraction = rci.MaxFraction;
        }