1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026799: NCollection_Array2's RowLength and ColLength return wrong value.

Comments to methods RowLength() and ColLength() improved to avoid possible misinterpretation
This commit is contained in:
abv 2015-10-24 08:00:58 +03:00 committed by bugmaster
parent b8c673b4e6
commit 9535c4be46

View File

@ -140,10 +140,11 @@ public:
Standard_Integer Length (void) const
{ return RowLength() * ColLength(); }
//! RowLength
//! Returns length of the row, i.e. number of columns
Standard_Integer RowLength (void) const
{ return (myUpperCol-myLowerCol+1); }
//! ColLength
//! Returns length of the column, i.e. number of rows
Standard_Integer ColLength (void) const
{ return (myUpperRow-myLowerRow+1); }