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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkExtractPolyDataGeometry.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.
=========================================================================*/
#include "vtkExtractPolyDataGeometry.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkFloatArray.h"
#include "vtkImplicitFunction.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkPolyData.h"
vtkStandardNewMacro(vtkExtractPolyDataGeometry);
vtkCxxSetObjectMacro(vtkExtractPolyDataGeometry,
ImplicitFunction,vtkImplicitFunction);
// Construct object with ExtractInside turned on.
vtkExtractPolyDataGeometry::vtkExtractPolyDataGeometry(vtkImplicitFunction *f)
{
this->ImplicitFunction = f;
if (this->ImplicitFunction)
{
this->ImplicitFunction->Register(this);
}
this->ExtractInside = 1;
this->ExtractBoundaryCells = 0;
}
vtkExtractPolyDataGeometry::~vtkExtractPolyDataGeometry()
{
this->SetImplicitFunction(NULL);
}
// Overload standard modified time function. If implicit function is modified,
// then this object is modified as well.
unsigned long vtkExtractPolyDataGeometry::GetMTime()
{
unsigned long mTime=this->MTime.GetMTime();
unsigned long impFuncMTime;
if ( this->ImplicitFunction != NULL )
{
impFuncMTime = this->ImplicitFunction->GetMTime();
mTime = ( impFuncMTime > mTime ? impFuncMTime : mTime );
}
return mTime;
}
int vtkExtractPolyDataGeometry::RequestData(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the input and output
vtkPolyData *input = vtkPolyData::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkPolyData *output = vtkPolyData::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkPointData *pd = input->GetPointData();
vtkCellData *cd = input->GetCellData();
vtkPointData *outputPD = output->GetPointData();
vtkCellData *outputCD = output->GetCellData();
vtkPoints *inPts=input->GetPoints();
vtkIdType numPts, i, cellId = 0, newId;
float multiplier;
vtkCellArray *inVerts=NULL, *inLines=NULL, *inPolys=NULL, *inStrips=NULL;
vtkCellArray *newVerts=NULL, *newLines=NULL, *newPolys=NULL, *newStrips=NULL;
vtkDebugMacro(<< "Extracting poly data geometry");
if ( ! this->ImplicitFunction )
{
vtkErrorMacro(<<"No implicit function specified");
return 1;
}
numPts = input->GetNumberOfPoints();
if ( this->ExtractInside )
{
multiplier = 1.0;
}
else
{
multiplier = -1.0;
}
// Use a templated function to access the points. The points are
// passed through, but scalar values are generated.
vtkFloatArray *newScalars = vtkFloatArray::New();
newScalars->SetNumberOfValues(numPts);
for (int ptId=0; ptId < numPts; ptId++ )
{
newScalars->SetValue(ptId, this->ImplicitFunction->
FunctionValue(inPts->GetPoint(ptId))*multiplier);
}
output->SetPoints(inPts);
outputPD->PassData(pd);
outputCD->CopyAllocate(cd);
// Now loop over all cells to see whether they are inside the implicit
// function. Copy if they are. Note: there is an awful hack here, that
// can result in bugs. The cellId is assumed to be arranged starting
// with the verts, then lines, then polys, then strips.
//
int numIn;
vtkIdType npts = 0;
vtkIdType *pts = 0;
if ( input->GetNumberOfVerts() )
{
inVerts = input->GetVerts();
newVerts = vtkCellArray::New();
newVerts->Allocate(inVerts->GetSize());
}
if ( input->GetNumberOfLines() )
{
inLines = input->GetLines();
newLines = vtkCellArray::New();
newLines->Allocate(inLines->GetSize());
}
if ( input->GetNumberOfPolys() )
{
inPolys = input->GetPolys();
newPolys = vtkCellArray::New();
newPolys->Allocate(inPolys->GetSize());
}
if ( input->GetNumberOfStrips() )
{
inStrips = input->GetStrips();
newStrips = vtkCellArray::New();
newStrips->Allocate(inStrips->GetSize());
}
// verts
if ( newVerts && !this->GetAbortExecute() )
{
for (inVerts->InitTraversal(); inVerts->GetNextCell(npts,pts); )
{
for (numIn=0, i=0; i<npts; i++)
{
if ( newScalars->GetValue(pts[i]) <= 0.0 )
{
numIn++;
}
}
if ( (numIn == npts) || (this->ExtractBoundaryCells && numIn > 0) )
{
newId = newVerts->InsertNextCell(npts,pts);
outputCD->CopyData(cd, cellId, newId);
}
cellId++;
}
}
this->UpdateProgress (0.6);
// lines
if ( newLines && !this->GetAbortExecute() )
{
for (inLines->InitTraversal(); inLines->GetNextCell(npts,pts); )
{
for (numIn=0, i=0; i<npts; i++)
{
if ( newScalars->GetValue(pts[i]) <= 0.0 )
{
numIn++;
}
}
if ( (numIn == npts) || (this->ExtractBoundaryCells && numIn > 0) )
{
newId = newLines->InsertNextCell(npts,pts);
outputCD->CopyData(cd, cellId, newId);
}
cellId++;
}
}
this->UpdateProgress (0.75);
// polys
if ( newPolys && !this->GetAbortExecute() )
{
for (inPolys->InitTraversal(); inPolys->GetNextCell(npts,pts); )
{
for (numIn=0, i=0; i<npts; i++)
{
if ( newScalars->GetValue(pts[i]) <= 0.0 )
{
numIn++;
}
}
if ( (numIn == npts) || (this->ExtractBoundaryCells && numIn > 0) )
{
newId = newPolys->InsertNextCell(npts,pts);
outputCD->CopyData(cd, cellId, newId);
}
cellId++;
}
}
this->UpdateProgress (0.90);
// strips
if ( newStrips && !this->GetAbortExecute() )
{
for (inStrips->InitTraversal(); inStrips->GetNextCell(npts,pts); )
{
for (numIn=0, i=0; i<npts; i++)
{
if ( newScalars->GetValue(pts[i]) <= 0.0 )
{
numIn++;
}
}
if ( (numIn == npts) || (this->ExtractBoundaryCells && numIn > 0) )
{
newId = newStrips->InsertNextCell(npts,pts);
outputCD->CopyData(cd, cellId, newId);
}
cellId++;
}
}
this->UpdateProgress (1.0);
// Update ourselves and release memory
//
newScalars->Delete();
if ( newVerts )
{
output->SetVerts(newVerts);
newVerts->Delete();
}
if ( newLines )
{
output->SetLines(newLines);
newLines->Delete();
}
if ( newPolys )
{
output->SetPolys(newPolys);
newPolys->Delete();
}
if ( newStrips )
{
output->SetStrips(newStrips);
newStrips->Delete();
}
return 1;
}
void vtkExtractPolyDataGeometry::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
if (this->ImplicitFunction)
{
os << indent << "Implicit Function: "
<< static_cast<void *>(this->ImplicitFunction) << "\n";
}
else
{
os << indent << "Implicit Function: (null)\n";
}
os << indent << "Extract Inside: "
<< (this->ExtractInside ? "On\n" : "Off\n");
os << indent << "Extract Boundary Cells: "
<< (this->ExtractBoundaryCells ? "On\n" : "Off\n");
}
|