mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-16 06:25:04 +08:00
65 lines
1.4 KiB
Plaintext
Executable File
65 lines
1.4 KiB
Plaintext
Executable File
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
inline Standard_Integer PCollection_HArray2::ColLength () const
|
|
{
|
|
return myUpperRow - myLowerRow + 1 ;
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// ------------------------------------------------------------------
|
|
inline Standard_Integer PCollection_HArray2::LowerCol () const
|
|
{
|
|
return myLowerCol ;
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// ------------------------------------------------------------------
|
|
inline Standard_Integer PCollection_HArray2::UpperCol () const
|
|
{
|
|
return myUpperCol ;
|
|
}
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// ------------------------------------------------------------------
|
|
inline Standard_Integer PCollection_HArray2::LowerRow () const
|
|
{
|
|
return myLowerRow;
|
|
}
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// ------------------------------------------------------------------
|
|
inline Standard_Integer PCollection_HArray2::RowLength () const
|
|
{
|
|
return myUpperCol - myLowerCol + 1 ;
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// ------------------------------------------------------------------
|
|
inline Standard_Integer PCollection_HArray2::UpperRow () const
|
|
{
|
|
return myUpperRow ;
|
|
}
|
|
|
|
|
|
|