PurplePen.DotGrid.SetAllDots C# (CSharp) Method

SetAllDots() public method

public SetAllDots ( bool dotValues ) : void
dotValues bool
return void
        public void SetAllDots(bool [,] dotValues)
        {
            for (int row = 0; row < dotsDown; ++row)
                for (int col = 0; col < dotsAcross; ++col)
                    SetDot(row, col, dotValues[row, col]);
        }