mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-12 18:29:35 +08:00
106 lines
3.4 KiB
Plaintext
Executable File
106 lines
3.4 KiB
Plaintext
Executable File
#include <Standard_OutOfRange.hxx>
|
|
|
|
#include Array2Item_hxx
|
|
|
|
//=======================================================================
|
|
//function : ColLength
|
|
//purpose :
|
|
//=======================================================================
|
|
inline Standard_Integer TCollection_Array2::ColLength () const
|
|
{
|
|
return myUpperRow - myLowerRow + 1 ;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : LowerCol
|
|
//purpose :
|
|
//=======================================================================
|
|
inline Standard_Integer TCollection_Array2::LowerCol () const
|
|
{
|
|
return myLowerColumn ;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : LowerRow
|
|
//purpose :
|
|
//=======================================================================
|
|
inline Standard_Integer TCollection_Array2::LowerRow () const
|
|
{
|
|
return myLowerRow;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RowLength
|
|
//purpose :
|
|
//=======================================================================
|
|
inline Standard_Integer TCollection_Array2::RowLength () const
|
|
{
|
|
return myUpperColumn - myLowerColumn + 1 ;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : UpperRow
|
|
//purpose :
|
|
//=======================================================================
|
|
inline Standard_Integer TCollection_Array2::UpperRow () const
|
|
{
|
|
return myUpperRow ;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : UpperCol
|
|
//purpose :
|
|
//=======================================================================
|
|
inline Standard_Integer TCollection_Array2::UpperCol () const
|
|
{
|
|
return myUpperColumn ;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetValue
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void TCollection_Array2::SetValue ( const Standard_Integer Row,
|
|
const Standard_Integer Col,
|
|
const Array2Item& Value )
|
|
{
|
|
Standard_OutOfRange_Raise_if((Row < myLowerRow || Row > myUpperRow ||
|
|
Col < myLowerColumn || Col > myUpperColumn),
|
|
NULL);
|
|
|
|
((Array2Item **)myData)[Row][Col] = Value ;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Value
|
|
//purpose :
|
|
//=======================================================================
|
|
inline const Array2Item& TCollection_Array2::Value(const Standard_Integer Row,
|
|
const Standard_Integer Col) const
|
|
{
|
|
Standard_OutOfRange_Raise_if((Row < myLowerRow || Row > myUpperRow ||
|
|
Col < myLowerColumn || Col > myUpperColumn),
|
|
NULL);
|
|
|
|
return ((Array2Item **)myData)[Row][Col];
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ChangeValue
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Array2Item& TCollection_Array2::ChangeValue(const Standard_Integer Row,
|
|
const Standard_Integer Col)
|
|
{
|
|
Standard_OutOfRange_Raise_if((Row < myLowerRow || Row > myUpperRow ||
|
|
Col < myLowerColumn || Col > myUpperColumn),
|
|
NULL);
|
|
|
|
return ((Array2Item **)myData)[Row][Col];
|
|
}
|
|
|
|
|
|
|