mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-29 10:50:34 +05:00
fix for paraview 64bit
This commit is contained in:
parent
23f07f30a3
commit
ac0ffa0a64
@ -2934,7 +2934,7 @@ void SMDS_Mesh::dumpGrid(std::string ficdump)
|
|||||||
}
|
}
|
||||||
int nbCells = myGrid->GetNumberOfCells();
|
int nbCells = myGrid->GetNumberOfCells();
|
||||||
ficcon << "-------------------------------- cells " << nbCells << endl;
|
ficcon << "-------------------------------- cells " << nbCells << endl;
|
||||||
for (int i=0; i<nbCells; i++)
|
for (vtkIdType i=0; i<nbCells; i++)
|
||||||
{
|
{
|
||||||
ficcon << i << " - " << myGrid->GetCell(i)->GetCellType() << " -";
|
ficcon << i << " - " << myGrid->GetCell(i)->GetCellType() << " -";
|
||||||
int nbptcell = myGrid->GetCell(i)->GetNumberOfPoints();
|
int nbptcell = myGrid->GetCell(i)->GetNumberOfPoints();
|
||||||
|
Loading…
Reference in New Issue
Block a user