PlacementGrid.CellIndex C# (CSharp) Method

CellIndex() private method

private CellIndex ( int r, int c ) : int
r int
c int
return int
	private int CellIndex(int r, int c) {
		return r * width + c;
	}