GeometryClassLibrary.MatricesMatrix.GetElement C# (CSharp) Method

GetElement() public method

Returns the matrix at row "rowIndex" and column "columnIndex"
public GetElement ( int rowIndex, int columnIndex ) : Matrix
rowIndex int
columnIndex int
return Matrix
        public Matrix GetElement(int rowIndex, int columnIndex)
        {
            return _matrices[rowIndex, columnIndex];
        }