Axiom.Components.Paging.Grid2DPageStrategyData.GetBottomLeftGridSpace C# (CSharp) Method

GetBottomLeftGridSpace() public method

Get the (grid space) corners of a cell.
public GetBottomLeftGridSpace ( int row, int col, Vector2 &bl ) : void
row int
col int
bl Vector2
return void
        public virtual void GetBottomLeftGridSpace(int row, int col, ref Vector2 bl)
        {
            bl.x = mBottomLeft.x + col * mCellSize;
            bl.y = mBottomLeft.y + row * mCellSize;
        }
        /// <summary>