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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkAbstractCellLocator.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 "vtkAbstractCellLocator.h"
#include "vtkObjectFactory.h"
#include "vtkCellArray.h"
#include "vtkGenericCell.h"
#include "vtkIdList.h"
#include "vtkPoints.h"
#include "vtkDataSet.h"
#include "vtkMath.h"
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
vtkAbstractCellLocator::vtkAbstractCellLocator()
{
this->CacheCellBounds = 0;
this->CellBounds = NULL;
this->MaxLevel = 8;
this->Level = 0;
this->RetainCellLists = 1;
this->NumberOfCellsPerNode = 32;
this->UseExistingSearchStructure = 0;
this->LazyEvaluation = 0;
this->GenericCell = vtkGenericCell::New();
}
//----------------------------------------------------------------------------
vtkAbstractCellLocator::~vtkAbstractCellLocator()
{
this->GenericCell->Delete();
}
//----------------------------------------------------------------------------
bool vtkAbstractCellLocator::StoreCellBounds()
{
if (this->CellBounds) return false;
if (!this->DataSet) return false;
// Allocate space for cell bounds storage, then fill
vtkIdType numCells = this->DataSet->GetNumberOfCells();
this->CellBounds = new double [numCells][6];
for (vtkIdType j=0; j<numCells; j++)
{
this->DataSet->GetCellBounds(j, CellBounds[j]);
}
return true;
}
//----------------------------------------------------------------------------
void vtkAbstractCellLocator::FreeCellBounds()
{
delete [] this->CellBounds;
this->CellBounds = NULL;
}
//----------------------------------------------------------------------------
int vtkAbstractCellLocator::IntersectWithLine(
double p1[3], double p2[3], double tol,
double& t, double x[3], double pcoords[3],
int &subId)
{
vtkIdType cellId = -1;
return this->IntersectWithLine(p1, p2, tol, t, x, pcoords, subId, cellId);
}
//----------------------------------------------------------------------------
int vtkAbstractCellLocator::IntersectWithLine(
double p1[3], double p2[3], double tol,
double& t, double x[3], double pcoords[3],
int &subId, vtkIdType &cellId)
{
int returnVal;
returnVal =
this->IntersectWithLine(p1, p2, tol, t, x, pcoords,
subId, cellId, this->GenericCell);
return returnVal;
}
//----------------------------------------------------------------------------
int vtkAbstractCellLocator::IntersectWithLine(
double [3]vtkNotUsed(p1), double [3]vtkNotUsed(p2), double vtkNotUsed(tol),
double& vtkNotUsed(t), double [3]vtkNotUsed(x),
double [3]vtkNotUsed(pcoords), int &vtkNotUsed(subId),
vtkIdType &vtkNotUsed(cellId),
vtkGenericCell *vtkNotUsed(cell))
{
vtkErrorMacro(<<"The locator class - " << this->GetClassName()
<< " does not yet support IntersectWithLine");
return 0;
}
//----------------------------------------------------------------------------
int vtkAbstractCellLocator::IntersectWithLine(
const double [3]vtkNotUsed(p1), const double [3]vtkNotUsed(p2),
vtkPoints *vtkNotUsed(points), vtkIdList *vtkNotUsed(cellIds))
{
vtkErrorMacro(<<"The locator class - " << this->GetClassName()
<< " does not yet support this IntersectWithLine interface");
return 0;
}
//----------------------------------------------------------------------------
void vtkAbstractCellLocator::FindClosestPoint(
double x[3], double closestPoint[3],
vtkIdType &cellId, int &subId,
double& dist2)
{
this->FindClosestPoint(x, closestPoint, this->GenericCell,
cellId, subId, dist2);
}
//----------------------------------------------------------------------------
void vtkAbstractCellLocator::FindClosestPoint(
double vtkNotUsed(x)[3], double vtkNotUsed(closestPoint)[3],
vtkGenericCell *vtkNotUsed(cell), vtkIdType &vtkNotUsed(cellId),
int &vtkNotUsed(subId), double& vtkNotUsed(dist2))
{
vtkErrorMacro(<<"The locator class - " << this->GetClassName()
<< " does not yet support FindClosestPoint");
}
//----------------------------------------------------------------------------
vtkIdType vtkAbstractCellLocator::FindClosestPointWithinRadius(
double x[3], double radius,
double closestPoint[3],
vtkGenericCell *cell,
vtkIdType &cellId,
int &subId, double& dist2)
{
int inside;
return this->FindClosestPointWithinRadius(
x, radius, closestPoint, cell, cellId, subId, dist2, inside);
}
//----------------------------------------------------------------------------
vtkIdType vtkAbstractCellLocator::FindClosestPointWithinRadius(
double x[3], double radius,
double closestPoint[3],
vtkIdType &cellId, int &subId,
double& dist2)
{
int inside;
return this->FindClosestPointWithinRadius(
x, radius, closestPoint, this->GenericCell,
cellId, subId, dist2, inside);
}
//----------------------------------------------------------------------------
vtkIdType vtkAbstractCellLocator::FindClosestPointWithinRadius(
double vtkNotUsed(x)[3], double vtkNotUsed(radius),
double vtkNotUsed(closestPoint)[3],
vtkGenericCell *vtkNotUsed(cell), vtkIdType &vtkNotUsed(cellId),
int &vtkNotUsed(subId), double& vtkNotUsed(dist2), int &vtkNotUsed(inside))
{
vtkErrorMacro(<<"The locator class - " << this->GetClassName()
<< " does not yet support FindClosestPoint");
return 0;
}
//----------------------------------------------------------------------------
void vtkAbstractCellLocator::FindCellsWithinBounds(
double *vtkNotUsed(bbox), vtkIdList *vtkNotUsed(cells))
{
vtkErrorMacro(<<"The locator class - " << this->GetClassName()
<< " does not yet support FindCellsWithinBounds");
}
//----------------------------------------------------------------------------
void vtkAbstractCellLocator::FindCellsAlongLine(
double vtkNotUsed(p1)[3], double vtkNotUsed(p2)[3], double vtkNotUsed(tolerance),
vtkIdList *vtkNotUsed(cells))
{
vtkErrorMacro(<<"The locator " << this->GetClassName()
<< " does not yet support FindCellsAlongLine");
}
//---------------------------------------------------------------------------
vtkIdType vtkAbstractCellLocator::FindCell(double x[3])
{
//
double dist2=0, pcoords[3], weights[32];
return this->FindCell(x, dist2, this->GenericCell, pcoords, weights);
}
//----------------------------------------------------------------------------
vtkIdType vtkAbstractCellLocator::FindCell(
double x[3], double tol2, vtkGenericCell *GenCell,
double pcoords[3], double *weights)
{
vtkIdType returnVal=-1;
int subId;
//
static int warning_shown = 0;
if (!warning_shown)
{
vtkWarningMacro(<<this->GetClassName() << " Does not implement FindCell"
<< " Reverting to slow DataSet implementation");
warning_shown = 1;
}
//
if (this->DataSet)
{
returnVal = this->DataSet->FindCell(
x, NULL, GenCell, 0, tol2, subId, pcoords, weights);
}
return returnVal;
}
//----------------------------------------------------------------------------
bool vtkAbstractCellLocator::InsideCellBounds(double x[3], vtkIdType cell_ID)
{
double cellBounds[6], delta[3] = {0.0, 0.0, 0.0};
if (this->DataSet)
{
this->DataSet->GetCellBounds(cell_ID, cellBounds);
return vtkMath::PointIsWithinBounds(x, cellBounds, delta)!=0;
}
return 0;
}
//----------------------------------------------------------------------------
void vtkAbstractCellLocator::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Cache Cell Bounds: " <<
this->CacheCellBounds << "\n";
os << indent << "Retain Cell Lists: " <<
(this->RetainCellLists ? "On\n" : "Off\n");
os << indent << "Number of Cells Per Bucket: "
<< this->NumberOfCellsPerNode << "\n";
os << indent << "UseExistingSearchStructure: "
<< this->UseExistingSearchStructure << "\n";
os << indent << "LazyEvaluation: "
<< this->LazyEvaluation << "\n";
}
//----------------------------------------------------------------------------
|