GeometryClassLibrary.MatricesMatrix.GetElement C# (CSharp) 메소드

GetElement() 공개 메소드

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