fivenine.UnifiedMaps.MapRegion.Inflate C# (CSharp) Метод

Inflate() публичный Метод

Inflates the current region with the given dimensions.
public Inflate ( float height, float width ) : MapRegion
height float The height.
width float The width.
Результат MapRegion
        public MapRegion Inflate(float height, float width) => new MapRegion(_center, _width + width, _height + height);