1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-06-10 11:34:06 +03:00
This commit is contained in:
ichesnok 2023-06-14 08:39:23 +01:00 committed by oan
parent cf85781059
commit 4556fae98d
2 changed files with 3 additions and 2 deletions

View File

@ -179,10 +179,10 @@ public:
Standard_Integer NbColumns() const { return myUpperCol - myLowerCol + 1; } Standard_Integer NbColumns() const { return myUpperCol - myLowerCol + 1; }
//! Returns length of the row, i.e. number of columns //! Returns length of the row, i.e. number of columns
Standard_Integer RowLength() const { return NbColumns(); } Standard_Integer RowLength() const { return NbRows(); }
//! Returns length of the column, i.e. number of rows //! Returns length of the column, i.e. number of rows
Standard_Integer ColLength() const { return NbRows(); } Standard_Integer ColLength() const { return NbColumns(); }
//! LowerRow //! LowerRow
Standard_Integer LowerRow (void) const Standard_Integer LowerRow (void) const

View File

@ -426,6 +426,7 @@ Handle(XCAFAnimObjects_AnimObject) XCAFDoc_Animation::GetObject() const
aNewOperObj->SetInverse(anIsInvert); aNewOperObj->SetInverse(anIsInvert);
anOrderedOperations.Append(aNewOperObj); anOrderedOperations.Append(aNewOperObj);
} }
anObj->ChangeOrderedOperations() = anOrderedOperations;
return anObj; return anObj;
} }