Axiom.Components.Paging.Grid2DPageStrategyData.GetBottomLeftGridSpace C# (CSharp) Méthode

GetBottomLeftGridSpace() public méthode

Get the (grid space) corners of a cell.
public GetBottomLeftGridSpace ( int row, int col, Vector2 &bl ) : void
row int
col int
bl Vector2
Résultat 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>