fivenine.UnifiedMaps.MapRegion.Inflate C# (CSharp) Method

Inflate() public method

Inflates the current region with the given dimensions.
public Inflate ( float height, float width ) : MapRegion
height float The height.
width float The width.
return MapRegion
        public MapRegion Inflate(float height, float width) => new MapRegion(_center, _width + width, _height + height);