hyades.physics.BoundingSquare.BoundingSquare C# (CSharp) Method

BoundingSquare() public method

public BoundingSquare ( Vector2 &min, Vector2 &max ) : System
min Vector2
max Vector2
return System
        public BoundingSquare(ref Vector2 min, ref Vector2 max)
        {
            this.min = min;
            this.max = max;
            this.valid = true;
        }