LitDev.LDPhysics.SetBoundaries C# (CSharp) Method

SetBoundaries() public static method

Set solid boundaries (positioning a boundary outside the GraphicsWindow removes it).
public static SetBoundaries ( Primitive left, Primitive right, Primitive top, Primitive bottom ) : void
left Primitive /// The left boundary X value. ///
right Primitive /// The right boundary X value. ///
top Primitive /// The top boundary Y value. ///
bottom Primitive /// The bottom (ground) boundary Y value. ///
return void
        public static void SetBoundaries(Primitive left, Primitive right, Primitive top, Primitive bottom)
        {
            _Engine.setBoundaries(left, right, top, bottom);
        }