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: vtkCoincidentPoints.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.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
#include "vtkCoincidentPoints.h"
#include "vtkIdList.h"
#include "vtkMath.h"
#include "vtkObjectFactory.h"
#include "vtkPoints.h"
#include "vtkSmartPointer.h"
#include <set>
#include <vector>
#include <map>
//----------------------------------------------------------------------------
// vtkCoincidentPoints::implementation
class vtkCoincidentPoints::implementation
{
public:
implementation()
{
this->TraversalIterator = this->CoordMap.end();
}
~implementation()
{
this->CoordMap.clear();
}
struct Coord
{
double coord[3];
Coord()
{
this->coord[0] = -1.0;
this->coord[1] = -1.0;
this->coord[2] = -1.0;
}
Coord( const Coord & src )
{
this->coord[0] = src.coord[0];
this->coord[1] = src.coord[1];
this->coord[2] = src.coord[2];
}
Coord( const double src[3] )
{
this->coord[0] = src[0];
this->coord[1] = src[1];
this->coord[2] = src[2];
}
Coord( const double x, const double y, const double z )
{
this->coord[0] = x;
this->coord[1] = y;
this->coord[2] = z;
}
inline bool operator < (const Coord & other) const
{
return this->coord[0] < other.coord[0] ||
(this->coord[0] == other.coord[0] && (this->coord[1] < other.coord[1] ||
(this->coord[1] == other.coord[1] && this->coord[2] < other.coord[2])));
}
};
typedef std::map<Coord, vtkSmartPointer<vtkIdList> >::iterator MapCoordIter;
vtkCoincidentPoints* Self;
std::map<Coord, vtkSmartPointer<vtkIdList> > CoordMap;
std::map<vtkIdType, vtkIdType> CoincidenceMap;
MapCoordIter TraversalIterator;
};
//----------------------------------------------------------------------------
// vtkCoincidentPoints
vtkStandardNewMacro(vtkCoincidentPoints);
vtkCoincidentPoints::vtkCoincidentPoints()
{
this->Implementation = new implementation();
this->Implementation->Self = this;
}
vtkCoincidentPoints::~vtkCoincidentPoints()
{
delete this->Implementation;
}
void vtkCoincidentPoints::Clear()
{
this->Implementation->CoordMap.clear();
this->Implementation->CoincidenceMap.clear();
}
void vtkCoincidentPoints::PrintSelf( ostream& os, vtkIndent indent )
{
this->Superclass::PrintSelf( os, indent );
//os << indent << "MaximumDepth: " << this->MaximumDepth << "\n";
}
void vtkCoincidentPoints::AddPoint(vtkIdType Id, const double point[3])
{
implementation::Coord coord(point);
implementation::MapCoordIter mapIter = this->Implementation->CoordMap.find(coord);
if(mapIter == this->Implementation->CoordMap.end())
{
vtkSmartPointer<vtkIdList> idSet = vtkSmartPointer<vtkIdList>::New();
idSet->InsertNextId(Id);
this->Implementation->CoordMap[coord] = idSet;
}
else
{
(*mapIter).second->InsertNextId(Id);
}
}
vtkIdList * vtkCoincidentPoints::GetCoincidentPointIds(const double point[3])
{
implementation::Coord coord(point);
implementation::MapCoordIter mapIter = this->Implementation->CoordMap.find(coord);
if(mapIter == this->Implementation->CoordMap.end())
{
return NULL;
}
if((*mapIter).second->GetNumberOfIds() > 1)
{
return (*mapIter).second;
}
else
{
// No Coincident Points
return NULL;
}
}
void vtkCoincidentPoints::RemoveNonCoincidentPoints()
{
implementation::MapCoordIter mapIter = this->Implementation->CoordMap.begin();
while(mapIter != this->Implementation->CoordMap.end())
{
if( (*mapIter).second->GetNumberOfIds() <= 1 )
{
this->Implementation->CoordMap.erase(mapIter++);
}
else
{
++mapIter;
}
}
}
vtkIdList * vtkCoincidentPoints::GetNextCoincidentPointIds()
{
vtkIdList * rvalue = NULL;
if(this->Implementation->TraversalIterator !=
this->Implementation->CoordMap.end())
{
rvalue = (*this->Implementation->TraversalIterator).second;
++this->Implementation->TraversalIterator;
return rvalue;
}
return rvalue;
}
void vtkCoincidentPoints::InitTraversal()
{
this->Implementation->TraversalIterator = this->Implementation->CoordMap.begin();
}
//----------------------------------------------------------------------------
// vtkSpiralkVertices - calculate points at a regular interval along a parametric
// spiral.
void vtkCoincidentPoints::SpiralPoints(vtkIdType num, vtkPoints * offsets)
{
int maxIter = 10;
double pi = vtkMath::Pi();
double a = 1/(4*pi*pi);
offsets->Initialize();
offsets->SetNumberOfPoints(num);
for (vtkIdType i = 0; i < num; i++)
{
double d = 2.0*i/sqrt(3.0);
// We are looking for points at regular intervals along the parametric spiral
// x = t*cos(2*pi*t)
// y = t*sin(2*pi*t)
// We cannot solve this equation exactly, so we use newton's method.
// Using an Excel trendline, we find that
// t = 0.553*d^0.502
// is an excellent starting point./g
double t = 0.553*pow(d, 0.502);
for (int iter = 0; iter < maxIter; iter++)
{
double r = sqrt(t*t+a*a);
double f = pi*(t*r+a*a*log(t+r)) - d;
double df = 2*pi*r;
t = t - f/df;
}
double x = t*cos(2*pi*t);
double y = t*sin(2*pi*t);
offsets->SetPoint(i, x, y, 0);
}
}
|