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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkStructuredGridClip.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 "vtkStructuredGridClip.h"
#include "vtkAlgorithmOutput.h"
#include "vtkCellData.h"
#include "vtkStructuredGrid.h"
#include "vtkInformation.h"
#include "vtkInformationExecutivePortKey.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkPointData.h"
vtkStandardNewMacro(vtkStructuredGridClip);
//----------------------------------------------------------------------------
vtkStructuredGridClip::vtkStructuredGridClip()
{
this->ClipData = 0;
this->Initialized = 0;
this->OutputWholeExtent[0] =
this->OutputWholeExtent[2] =
this->OutputWholeExtent[4] = -VTK_INT_MAX;
this->OutputWholeExtent[1] =
this->OutputWholeExtent[3] =
this->OutputWholeExtent[5] = VTK_INT_MAX;
}
//----------------------------------------------------------------------------
void vtkStructuredGridClip::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
int idx;
os << indent << "OutputWholeExtent: (" << this->OutputWholeExtent[0]
<< "," << this->OutputWholeExtent[1];
for (idx = 1; idx < 3; ++idx)
{
os << indent << ", " << this->OutputWholeExtent[idx * 2]
<< "," << this->OutputWholeExtent[idx*2 + 1];
}
os << ")\n";
if (this->ClipData)
{
os << indent << "ClipDataOn\n";
}
else
{
os << indent << "ClipDataOff\n";
}
}
//----------------------------------------------------------------------------
void vtkStructuredGridClip::SetOutputWholeExtent(int extent[6], vtkInformation *outInfo)
{
int idx;
int modified = 0;
for (idx = 0; idx < 6; ++idx)
{
if (this->OutputWholeExtent[idx] != extent[idx])
{
this->OutputWholeExtent[idx] = extent[idx];
modified = 1;
}
}
this->Initialized = 1;
if (modified)
{
this->Modified();
if (!outInfo)
{
outInfo = this->GetExecutive()->GetOutputInformation(0);
}
outInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), extent, 6);
}
}
//----------------------------------------------------------------------------
void vtkStructuredGridClip::SetOutputWholeExtent(int minX, int maxX,
int minY, int maxY,
int minZ, int maxZ)
{
int extent[6];
extent[0] = minX; extent[1] = maxX;
extent[2] = minY; extent[3] = maxY;
extent[4] = minZ; extent[5] = maxZ;
this->SetOutputWholeExtent(extent);
}
//----------------------------------------------------------------------------
void vtkStructuredGridClip::GetOutputWholeExtent(int extent[6])
{
int idx;
for (idx = 0; idx < 6; ++idx)
{
extent[idx] = this->OutputWholeExtent[idx];
}
}
//----------------------------------------------------------------------------
// Change the WholeExtent
int vtkStructuredGridClip::RequestInformation (
vtkInformation * vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation* outInfo = outputVector->GetInformationObject(0);
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
int idx, extent[6];
inInfo->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(),extent);
if ( ! this->Initialized)
{
this->SetOutputWholeExtent(extent, outInfo);
}
// Clip the OutputWholeExtent with the input WholeExtent
for (idx = 0; idx < 3; ++idx)
{
if (this->OutputWholeExtent[idx*2] >= extent[idx*2] &&
this->OutputWholeExtent[idx*2] <= extent[idx*2+1])
{
extent[idx*2] = this->OutputWholeExtent[idx*2];
}
if (this->OutputWholeExtent[idx*2+1] >= extent[idx*2] &&
this->OutputWholeExtent[idx*2+1] <= extent[idx*2+1])
{
extent[idx*2+1] = this->OutputWholeExtent[idx*2+1];
}
// make usre the order is correct
if (extent[idx*2] > extent[idx*2+1])
{
extent[idx*2] = extent[idx*2+1];
}
}
outInfo->Set(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(),extent,6);
return 1;
}
//----------------------------------------------------------------------------
// Sets the output whole extent to be the input whole extent.
void vtkStructuredGridClip::ResetOutputWholeExtent()
{
if ( ! this->GetInput())
{
vtkWarningMacro("ResetOutputWholeExtent: No input");
return;
}
this->GetInputConnection(0, 0)->GetProducer()->UpdateInformation();
vtkInformation *inInfo = this->GetExecutive()->GetInputInformation(0, 0);
this->SetOutputWholeExtent(inInfo->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT()));
}
//----------------------------------------------------------------------------
// This method simply copies by reference the input data to the output.
int vtkStructuredGridClip::RequestData(vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
int *inExt;
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
vtkStructuredGrid *outData = vtkStructuredGrid::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkStructuredGrid *inData = vtkStructuredGrid::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
inExt = inData->GetExtent();
outData->SetExtent(inExt);
outData->GetPointData()->PassData(inData->GetPointData());
outData->GetCellData()->PassData(inData->GetCellData());
outData->SetPoints(inData->GetPoints());
if (this->ClipData)
{
outData->Crop(
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT()));
}
return 1;
}
|