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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkImplicitDataSet.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 "vtkImplicitDataSet.h"
#include "vtkCell.h"
#include "vtkDataArray.h"
#include "vtkDataSet.h"
#include "vtkGarbageCollector.h"
#include "vtkMath.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
vtkStandardNewMacro(vtkImplicitDataSet);
vtkCxxSetObjectMacro(vtkImplicitDataSet,DataSet,vtkDataSet);
// Construct an vtkImplicitDataSet with no initial dataset; the OutValue
// set to a large negative number; and the OutGradient set to (0,0,1).
vtkImplicitDataSet::vtkImplicitDataSet()
{
this->DataSet = NULL;
this->OutValue = -VTK_DOUBLE_MAX;
this->OutGradient[0] = 0.0;
this->OutGradient[1] = 0.0;
this->OutGradient[2] = 1.0;
this->Weights = NULL;
this->Size = 0;
}
vtkImplicitDataSet::~vtkImplicitDataSet()
{
this->SetDataSet(NULL);
delete [] this->Weights;
}
// Evaluate the implicit function. This returns the interpolated scalar value
// at x[3].
double vtkImplicitDataSet::EvaluateFunction(double x[3])
{
vtkDataArray *scalars;
vtkCell *cell;
vtkIdType id;
int subId, i, numPts;
double pcoords[3], s;
if ( this->DataSet->GetMaxCellSize() > this->Size )
{
delete [] this->Weights;
this->Weights = new double[this->DataSet->GetMaxCellSize()];
this->Size = this->DataSet->GetMaxCellSize();
}
// See if a dataset has been specified
if ( !this->DataSet ||
!(scalars = this->DataSet->GetPointData()->GetScalars()) )
{
vtkErrorMacro(<<"Can't evaluate dataset!");
return this->OutValue;
}
// Find the cell that contains xyz and get it
cell = this->DataSet->FindAndGetCell(x,NULL,-1,VTK_DBL_EPSILON,subId,pcoords,this->Weights);
if (cell)
{ // Interpolate the point data
numPts = cell->GetNumberOfPoints();
for (s=0.0, i=0; i < numPts; i++)
{
id = cell->PointIds->GetId(i);
s += scalars->GetComponent(id,0) * this->Weights[i];
}
return s;
}
else
{ // use outside value
return this->OutValue;
}
}
unsigned long vtkImplicitDataSet::GetMTime()
{
unsigned long mTime=this->vtkImplicitFunction::GetMTime();
unsigned long DataSetMTime;
if ( this->DataSet != NULL )
{
DataSetMTime = this->DataSet->GetMTime();
mTime = ( DataSetMTime > mTime ? DataSetMTime : mTime );
}
return mTime;
}
// Evaluate implicit function gradient.
void vtkImplicitDataSet::EvaluateGradient(double x[3], double n[3])
{
vtkDataArray *scalars;
vtkCell *cell;
vtkIdType id;
int subId, i, numPts;
double pcoords[3];
if ( this->DataSet->GetMaxCellSize() > this->Size )
{
delete [] this->Weights;
this->Weights = new double[this->DataSet->GetMaxCellSize()];
this->Size = this->DataSet->GetMaxCellSize();
}
// See if a dataset has been specified
if ( !this->DataSet ||
!(scalars = this->DataSet->GetPointData()->GetScalars()) )
{
vtkErrorMacro(<<"Can't evaluate gradient!");
for ( i=0; i < 3; i++ )
{
n[i] = this->OutGradient[i];
}
return;
}
// Find the cell that contains xyz and get it
cell = this->DataSet->FindAndGetCell(x,NULL,-1,VTK_DBL_EPSILON,subId,pcoords,this->Weights);
if (cell)
{ // Interpolate the point data
numPts = cell->GetNumberOfPoints();
for ( i=0; i < numPts; i++ ) //Weights used to hold scalar values
{
id = cell->PointIds->GetId(i);
this->Weights[i] = scalars->GetComponent(id,0);
}
cell->Derivatives(subId, pcoords, this->Weights, 1, n);
}
else
{ // use outside value
for ( i=0; i < 3; i++ )
{
n[i] = this->OutGradient[i];
}
}
}
void vtkImplicitDataSet::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Out Value: " << this->OutValue << "\n";
os << indent << "Out Gradient: (" << this->OutGradient[0] << ", "
<< this->OutGradient[1] << ", " << this->OutGradient[2] << ")\n";
if ( this->DataSet )
{
os << indent << "Data Set: " << this->DataSet << "\n";
}
else
{
os << indent << "Data Set: (none)\n";
}
}
//----------------------------------------------------------------------------
void vtkImplicitDataSet::ReportReferences(vtkGarbageCollector* collector)
{
this->Superclass::ReportReferences(collector);
// These filters share our input and are therefore involved in a
// reference loop.
vtkGarbageCollectorReport(collector, this->DataSet, "DataSet");
}
|