BEPUphysics.BroadPhaseEntries.ContainmentState.ContainmentState C# (CSharp) Method

ContainmentState() public method

Constructs a new ContainmentState.
public ContainmentState ( bool touching, bool contained ) : System
touching bool Whether or not the object is partially or fully contained.
contained bool Whether or not the object is fully contained.
return System
        public ContainmentState(bool touching, bool contained)
        {
            IsTouching = touching;
            IsContained = contained;
            StaleState = false;
        }
        /// <summary>

Same methods

ContainmentState::ContainmentState ( bool touching, bool contained, bool stale ) : System
ContainmentState