Skip to content

Commit

Permalink
Merge pull request #203 from vejmarie/fix_vtkcelliterator
Browse files Browse the repository at this point in the history
Fix vtkcelliterator
  • Loading branch information
wwmayer committed Jul 5, 2016
2 parents debda76 + a247aab commit 462e8ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/3rdParty/salomesmesh/src/SMDS/SMDS_VtkCellIterator.cpp
Expand Up @@ -63,7 +63,7 @@ SMDS_VtkCellIteratorToUNV::SMDS_VtkCellIteratorToUNV(SMDS_Mesh* mesh, int vtkCel
_mesh = mesh;
_cellId = vtkCellId;
_index = 0;
_type = aType;
// _type = aType;
//MESSAGE("SMDS_VtkCellInterlacedIterator (UNV)" << _type);

_vtkIdList = vtkIdList::New();
Expand All @@ -72,6 +72,7 @@ SMDS_VtkCellIteratorToUNV::SMDS_VtkCellIteratorToUNV(SMDS_Mesh* mesh, int vtkCel
grid->GetCellPoints((vtkIdType)_cellId, (vtkIdType&)_nbNodes, pts);
_vtkIdList->SetNumberOfIds(_nbNodes);
const int *ids = 0;
_type = aType;
switch (_type)
{
case SMDSEntity_Quad_Edge:
Expand Down

0 comments on commit 462e8ec

Please sign in to comment.