1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkBridgeCellIterator.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkBridgeCellIterator - Implementation of vtkGenericCellIterator.
// It is just an example that show how to implement the Generic. It is also
// used for testing and evaluating the Generic.
// .SECTION See Also
// vtkGenericCellIterator, vtkBridgeDataSet
#include "vtkBridgeCellIterator.h"
#include <cassert>
#include "vtkObjectFactory.h"
#include "vtkBridgeCell.h"
#include "vtkBridgeDataSet.h"
#include "vtkDataSet.h"
#include "vtkIdList.h"
#include "vtkBridgeCellIteratorOnDataSet.h"
#include "vtkBridgeCellIteratorOne.h"
#include "vtkBridgeCellIteratorOnCellBoundaries.h"
#include "vtkBridgeCellIteratorOnCellList.h"
vtkStandardNewMacro(vtkBridgeCellIterator);
//-----------------------------------------------------------------------------
void vtkBridgeCellIterator::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}
//-----------------------------------------------------------------------------
vtkBridgeCellIterator::vtkBridgeCellIterator()
{
// this->DebugOn();
this->CurrentIterator=0;
this->IteratorOnDataSet=vtkBridgeCellIteratorOnDataSet::New();
this->IteratorOneCell=vtkBridgeCellIteratorOne::New();
this->IteratorOnCellBoundaries=vtkBridgeCellIteratorOnCellBoundaries::New();
this->IteratorOnCellList=vtkBridgeCellIteratorOnCellList::New();
}
//-----------------------------------------------------------------------------
vtkBridgeCellIterator::~vtkBridgeCellIterator()
{
this->IteratorOnDataSet->Delete();
this->IteratorOneCell->Delete();
this->IteratorOnCellBoundaries->Delete();
this->IteratorOnCellList->Delete();
}
//-----------------------------------------------------------------------------
// Description:
// Move iterator to first position if any (loop initialization).
void vtkBridgeCellIterator::Begin()
{
if(this->CurrentIterator!=0)
{
this->CurrentIterator->Begin();
}
}
//-----------------------------------------------------------------------------
// Description:
// Is there no cell at iterator position? (exit condition).
int vtkBridgeCellIterator::IsAtEnd()
{
int result=1;
if(this->CurrentIterator!=0)
{
result=this->CurrentIterator->IsAtEnd();
}
return result;
}
//-----------------------------------------------------------------------------
// Description:
// Create an empty cell.
// \post result_exists: result!=0
vtkGenericAdaptorCell *vtkBridgeCellIterator::NewCell()
{
vtkGenericAdaptorCell *result=vtkBridgeCell::New();
assert("post: result_exists" && result!=0);
return result;
}
//-----------------------------------------------------------------------------
// Description:
// Cell at current position
// \pre not_at_end: !IsAtEnd()
// \pre c_exists: c!=0
// THREAD SAFE
void vtkBridgeCellIterator::GetCell(vtkGenericAdaptorCell *c)
{
assert("pre: not_at_end" && !IsAtEnd());
assert("pre: c_exists" && c!=0);
this->CurrentIterator->GetCell(c);
}
//-----------------------------------------------------------------------------
// Description:
// Cell at current position.
// NOT THREAD SAFE
// \pre not_at_end: !IsAtEnd()
// \post result_exits: result!=0
vtkGenericAdaptorCell *vtkBridgeCellIterator::GetCell()
{
assert("pre: not_at_end" && !IsAtEnd());
vtkGenericAdaptorCell *result=this->CurrentIterator->GetCell( );
assert("post: result_exits" && result!=0);
return result;
}
//-----------------------------------------------------------------------------
// Description:
// Move iterator to next position. (loop progression).
// \pre not_at_end: !IsAtEnd()
void vtkBridgeCellIterator::Next()
{
assert("pre: not_off" && !IsAtEnd());
this->CurrentIterator->Next();
}
//-----------------------------------------------------------------------------
// Description:
// Used internally by vtkBridgeDataSet.
// Iterate over cells of `ds' of some dimension `dim'.
// \pre ds_exists: ds!=0
// \pre valid_dim_range: (dim>=-1) && (dim<=3)
void vtkBridgeCellIterator::InitWithDataSet(vtkBridgeDataSet *ds,
int dim)
{
assert("pre: ds_exists" && ds!=0);
assert("pre: valid_dim_range" && (dim>=-1) && (dim<=3));
this->IteratorOnDataSet->InitWithDataSet(ds,dim);
this->CurrentIterator=this->IteratorOnDataSet;
}
//-----------------------------------------------------------------------------
// Description:
// Used internally by vtkBridgeDataSet.
// Iterate over boundary cells of `ds' of some dimension `dim'.
// \pre ds_exists: ds!=0
// \pre valid_dim_range: (dim>=-1) && (dim<=3)
void vtkBridgeCellIterator::InitWithDataSetBoundaries(vtkBridgeDataSet *ds,
int dim,
int exterior_only)
{
assert("pre: ds_exists" && ds!=0);
assert("pre: valid_dim_range" && (dim>=-1) && (dim<=3));
(void)ds;
(void)dim;
(void)exterior_only;
assert("check: TODO" && 0);
}
//-----------------------------------------------------------------------------
// Description:
// Used internally by vtkBridgeDataSet.
// Iterate on one cell `id' of `ds'.
// \pre ds_exists: ds!=0
// \pre valid_id: (id>=0)&&(id<=ds->GetNumberOfCells())
void vtkBridgeCellIterator::InitWithOneCell(vtkBridgeDataSet *ds,
vtkIdType cellid)
{
assert("pre: ds_exists" && ds!=0);
assert("pre: valid_id" && (cellid>=0)&&(cellid<=ds->GetNumberOfCells()));
this->IteratorOneCell->InitWithOneCell(ds,cellid);
this->CurrentIterator=this->IteratorOneCell;
}
//-----------------------------------------------------------------------------
// Description:
// Used internally by vtkBridgeCell.
// Iterate on one cell `c'.
// \pre c_exists: c!=0
void vtkBridgeCellIterator::InitWithOneCell(vtkBridgeCell *c)
{
assert("pre: c_exists" && c!=0);
this->IteratorOneCell->InitWithOneCell(c);
this->CurrentIterator=this->IteratorOneCell;
}
//-----------------------------------------------------------------------------
// Description:
// Used internally by vtkBridgeCell.
// Iterate on boundary cells of a cell.
// \pre cell_exists: cell!=0
// \pre valid_dim_range: (dim==-1) || ((dim>=0)&&(dim<cell->GetDimension()))
void vtkBridgeCellIterator::InitWithCellBoundaries(vtkBridgeCell *cell,
int dim)
{
assert("pre: cell_exists" && cell!=0);
assert("pre: valid_dim_range" && ((dim==-1) || ((dim>=0)&&(dim<cell->GetDimension()))));
this->IteratorOnCellBoundaries->InitWithCellBoundaries(cell,dim);
this->CurrentIterator=this->IteratorOnCellBoundaries;
}
//-----------------------------------------------------------------------------
// Description:
// Used internally by vtkBridgeCell.
// Iterate on neighbors defined by `cells' over the dataset `ds'.
// \pre cells_exist: cells!=0
// \pre ds_exists: ds!=0
void vtkBridgeCellIterator::InitWithCells(vtkIdList *cells,
vtkBridgeDataSet *ds)
{
assert("pre: cells_exist" && cells!=0);
assert("pre: ds_exists" && ds!=0);
this->IteratorOnCellList->InitWithCells(cells,ds);
this->CurrentIterator=this->IteratorOnCellList;
}
//-----------------------------------------------------------------------------
// Description:
// Used internally by vtkBridgeCell.
// Iterate on a boundary cell (defined by its points `pts' with coordinates
// `coords', dimension `dim' and unique id `cellid') of a cell.
// \pre coords_exist: coords!=0
// \pre pts_exist: pts!=0
// \pre valid_dim: dim>=0 && dim<=2
// \pre valid_points: pts->GetNumberOfIds()>dim
void vtkBridgeCellIterator::InitWithPoints(vtkPoints *coords,
vtkIdList *pts,
int dim,
vtkIdType cellid)
{
assert("pre: coords_exist" && coords!=0);
assert("pre: pts_exist" && pts!=0);
assert("pre: valid_dim" && dim>=0 && dim<=2);
assert("pre: valid_points" && pts->GetNumberOfIds()>dim);
this->IteratorOneCell->InitWithPoints(coords,pts,dim,cellid);
this->CurrentIterator=this->IteratorOneCell;
}
|