VTK  9.3.20240420
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkSMPMergePoints Class Reference

Class designed to help with merging of points in parallel. More...

#include <vtkSMPMergePoints.h>

Inheritance diagram for vtkSMPMergePoints:
[legend]
Collaboration diagram for vtkSMPMergePoints:
[legend]

Public Types

typedef vtkMergePoints Superclass
 
- Public Types inherited from vtkMergePoints
typedef vtkPointLocator Superclass
 
- Public Types inherited from vtkPointLocator
typedef vtkIncrementalPointLocator Superclass
 Standard methods for type management and printing.
 
- Public Types inherited from vtkIncrementalPointLocator
typedef vtkAbstractPointLocator Superclass
 
- Public Types inherited from vtkAbstractPointLocator
typedef vtkLocator Superclass
 Standard type and print methods.
 
- Public Types inherited from vtkLocator
typedef vtkObject Superclass
 Standard type and print methods.
 

Public Member Functions

virtual vtkTypeBool IsA (const char *type)
 Standard methods for type management and printing.
 
vtkSMPMergePointsNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Standard type and print methods.
 
void InitializeMerge ()
 This should be called from 1 thread before any call to Merge.
 
void Merge (vtkSMPMergePoints *locator, vtkIdType idx, vtkPointData *outPd, vtkPointData *inPd, vtkIdList *idList)
 Merge the points of one of the bins from the given locator to the same bin of the current locator.
 
void FixSizeOfPointArray ()
 At the of the merge, this can be called to set the MaxId of the points array to the maximum id in the locator.
 
vtkIdType GetMaxId ()
 Returns the biggest id in the locator.
 
vtkIdType GetNumberOfBuckets () VTK_FUTURE_CONST override
 Returns the number of bins.
 
vtkIdType GetNumberOfIdsInBucket (vtkIdType idx)
 Returns the number of points in a bin.
 
- Public Member Functions inherited from vtkMergePoints
virtual vtkTypeBool IsA (const char *type)
 Standard methods for type management and printing.
 
vtkMergePointsNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Standard type and print methods.
 
int InsertUniquePoint (const double x[3], vtkIdType &ptId) override
 Determine whether point given by x[3] has been inserted into points list.
 
vtkIdType IsInsertedPoint (const double x[3]) override
 Determine whether point given by x[3] has been inserted into points list.
 
vtkIdType IsInsertedPoint (double x, double y, double z) override
 Determine whether point given by x[3] has been inserted into points list.
 
- Public Member Functions inherited from vtkPointLocator
vtkIdType FindClosestPoint (const double x[3]) override
 Given a position x, return the id of the point closest to it.
 
int InitPointInsertion (vtkPoints *newPts, const double bounds[6]) override
 Initialize the point insertion process.
 
int InitPointInsertion (vtkPoints *newPts, const double bounds[6], vtkIdType estNumPts) override
 Initialize the point insertion process.
 
void InsertPoint (vtkIdType ptId, const double x[3]) override
 Incrementally insert a point into search structure with a particular index value.
 
vtkIdType InsertNextPoint (const double x[3]) override
 Incrementally insert a point into search structure.
 
int InsertUniquePoint (const double x[3], vtkIdType &ptId) override
 Determine whether point given by x[3] has been inserted into points list.
 
vtkIdType FindClosestInsertedPoint (const double x[3]) override
 Given a position x, return the id of the point closest to it.
 
void FindClosestNPoints (int N, const double x[3], vtkIdList *result) override
 Find the closest N points to a position.
 
void FindPointsWithinRadius (double R, const double x[3], vtkIdList *result) override
 Find all points within a specified radius R of position x.
 
virtual vtkIdListGetPointsInBucket (const double x[3], int ijk[3])
 Given a position x, return the list of points in the bucket that contains the point.
 
virtual vtkIdType FindClosestPoint (const double x[3])=0
 Given a position x, return the id of the point closest to it.
 
vtkIdType FindClosestPoint (double x, double y, double z)
 
virtual void SetDivisions (int, int, int)
 Set the number of divisions in x-y-z directions.
 
virtual void SetDivisions (int[3])
 Set the number of divisions in x-y-z directions.
 
virtual int * GetDivisions ()
 Set the number of divisions in x-y-z directions.
 
virtual void GetDivisions (int data[3])
 Set the number of divisions in x-y-z directions.
 
virtual void SetNumberOfPointsPerBucket (int)
 Specify the average number of points in each bucket.
 
virtual int GetNumberOfPointsPerBucket ()
 Specify the average number of points in each bucket.
 
vtkIdType FindClosestPointWithinRadius (double radius, const double x[3], double &dist2) override
 Given a position x and a radius r, return the id of the point closest to the point in that radius.
 
virtual vtkIdType FindClosestPointWithinRadius (double radius, const double x[3], double inputDataLength, double &dist2)
 Given a position x and a radius r, return the id of the point closest to the point in that radius.
 
vtkIdType IsInsertedPoint (double x, double y, double z) override
 Determine whether point given by x[3] has been inserted into points list.
 
vtkIdType IsInsertedPoint (const double x[3]) override
 Determine whether point given by x[3] has been inserted into points list.
 
virtual void FindDistributedPoints (int N, const double x[3], vtkIdList *result, int M)
 Find the closest points to a position such that each octant of space around the position contains at least N points.
 
virtual void FindDistributedPoints (int N, double x, double y, double z, vtkIdList *result, int M)
 Find the closest points to a position such that each octant of space around the position contains at least N points.
 
virtual vtkPointsGetPoints ()
 Provide an accessor to the points.
 
void Initialize () override
 See vtkLocator interface documentation.
 
void FreeSearchStructure () override
 See vtkLocator interface documentation.
 
void BuildLocator () override
 See vtkLocator interface documentation.
 
void ForceBuildLocator () override
 See vtkLocator interface documentation.
 
void GenerateRepresentation (int level, vtkPolyData *pd) override
 See vtkLocator interface documentation.
 
vtkPointLocatorNewInstance () const
 Standard methods for type management and printing.
 
- Public Member Functions inherited from vtkIncrementalPointLocator
virtual vtkTypeBool IsA (const char *type)
 Standard type and print methods.
 
vtkIncrementalPointLocatorNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Standard type and print methods.
 
virtual vtkIdType FindClosestInsertedPoint (const double x[3])=0
 Given a point x assumed to be covered by the search structure, return the index of the closest point (already inserted to the search structure) regardless of the associated minimum squared distance relative to the squared insertion-tolerance distance.
 
virtual int InitPointInsertion (vtkPoints *newPts, const double bounds[6])=0
 Initialize the point insertion process.
 
virtual int InitPointInsertion (vtkPoints *newPts, const double bounds[6], vtkIdType estSize)=0
 Initialize the point insertion process.
 
virtual vtkIdType IsInsertedPoint (double x, double y, double z)=0
 Determine whether or not a given point has been inserted.
 
virtual vtkIdType IsInsertedPoint (const double x[3])=0
 Determine whether or not a given point has been inserted.
 
virtual int InsertUniquePoint (const double x[3], vtkIdType &ptId)=0
 Insert a point unless there has been a duplicate in the search structure.
 
virtual void InsertPoint (vtkIdType ptId, const double x[3])=0
 Insert a given point with a specified point index ptId.
 
virtual vtkIdType InsertNextPoint (const double x[3])=0
 Insert a given point and return the point index.
 
- Public Member Functions inherited from vtkAbstractPointLocator
virtual vtkIdType FindClosestPointWithinRadius (double radius, const double x[3], double &dist2)=0
 Given a position x and a radius r, return the id of the point closest to the point in that radius.
 
vtkIdType FindClosestPoint (double x, double y, double z)
 Given a position x, return the id of the point closest to it.
 
void FindClosestNPoints (int N, double x, double y, double z, vtkIdList *result)
 Find the closest N points to a position.
 
void FindPointsWithinRadius (double R, double x, double y, double z, vtkIdList *result)
 Find all points within a specified radius R of position x.
 
virtual double * GetBounds ()
 Provide an accessor to the bounds.
 
virtual void GetBounds (double *)
 Provide an accessor to the bounds.
 
vtkAbstractPointLocatorNewInstance () const
 Standard type and print methods.
 
- Public Member Functions inherited from vtkLocator
virtual void Update ()
 Cause the locator to rebuild itself if it or its input dataset has changed.
 
virtual void Initialize ()
 Initialize locator.
 
virtual void BuildLocator ()=0
 Build the locator from the input dataset.
 
virtual void ForceBuildLocator ()
 Build the locator from the input dataset (even if UseExistingSearchStructure is on).
 
virtual void FreeSearchStructure ()=0
 Free the memory required for the spatial data structure.
 
virtual void GenerateRepresentation (int level, vtkPolyData *pd)=0
 Method to build a representation at a particular level.
 
virtual void SetDataSet (vtkDataSet *)
 Build the locator from the points/cells defining this dataset.
 
virtual vtkDataSetGetDataSet ()
 Build the locator from the points/cells defining this dataset.
 
virtual void SetMaxLevel (int)
 Set the maximum allowable level for the tree.
 
virtual int GetMaxLevel ()
 Set the maximum allowable level for the tree.
 
virtual int GetLevel ()
 Get the level of the locator (determined automatically if Automatic is true).
 
virtual void SetAutomatic (vtkTypeBool)
 Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket.
 
virtual vtkTypeBool GetAutomatic ()
 Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket.
 
virtual void AutomaticOn ()
 Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket.
 
virtual void AutomaticOff ()
 Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket.
 
virtual void SetTolerance (double)
 Specify absolute tolerance (in world coordinates) for performing geometric operations.
 
virtual double GetTolerance ()
 Specify absolute tolerance (in world coordinates) for performing geometric operations.
 
virtual void SetUseExistingSearchStructure (vtkTypeBool)
 Get/Set UseExistingSearchStructure, which when enabled it allows the locator to NOT be built again.
 
virtual vtkTypeBool GetUseExistingSearchStructure ()
 Get/Set UseExistingSearchStructure, which when enabled it allows the locator to NOT be built again.
 
virtual void UseExistingSearchStructureOn ()
 Get/Set UseExistingSearchStructure, which when enabled it allows the locator to NOT be built again.
 
virtual void UseExistingSearchStructureOff ()
 Get/Set UseExistingSearchStructure, which when enabled it allows the locator to NOT be built again.
 
virtual vtkMTimeType GetBuildTime ()
 Return the time of the last data structure build.
 
bool UsesGarbageCollector () const override
 Handle the PointSet <-> Locator loop.
 
vtkLocatorNewInstance () const
 Standard type and print methods.
 
- Public Member Functions inherited from vtkObject
 vtkBaseTypeMacro (vtkObject, vtkObjectBase)
 
virtual void DebugOn ()
 Turn debugging output on.
 
virtual void DebugOff ()
 Turn debugging output off.
 
bool GetDebug ()
 Get the value of the debug flag.
 
void SetDebug (bool debugFlag)
 Set the value of the debug flag.
 
virtual void Modified ()
 Update the modification time for this object.
 
virtual vtkMTimeType GetMTime ()
 Return this object's modified time.
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses.
 
void RemoveObserver (unsigned long tag)
 
void RemoveObservers (unsigned long event)
 
void RemoveObservers (const char *event)
 
void RemoveAllObservers ()
 
vtkTypeBool HasObserver (unsigned long event)
 
vtkTypeBool HasObserver (const char *event)
 
vtkTypeBool InvokeEvent (unsigned long event)
 
vtkTypeBool InvokeEvent (const char *event)
 
std::string GetObjectDescription () const override
 The object description printed in messages and PrintSelf output.
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
vtkCommandGetCommand (unsigned long tag)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
void RemoveObserver (vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
void RemoveObservers (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
void RemoveObservers (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
vtkTypeBool HasObserver (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
vtkTypeBool HasObserver (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events.
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events.
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Allow user to set the AbortFlagOn() with the return value of the callback method.
 
vtkTypeBool InvokeEvent (unsigned long event, void *callData)
 This method invokes an event and return whether the event was aborted or not.
 
vtkTypeBool InvokeEvent (const char *event, void *callData)
 This method invokes an event and return whether the event was aborted or not.
 
virtual void SetObjectName (const std::string &objectName)
 Set/get the name of this object for reporting purposes.
 
virtual std::string GetObjectName () const
 Set/get the name of this object for reporting purposes.
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 Return the class name as a string.
 
virtual std::string GetObjectDescription () const
 The object description printed in messages and PrintSelf output.
 
virtual vtkTypeBool IsA (const char *name)
 Return 1 if this class is the same type of (or a subclass of) the named class.
 
virtual vtkIdType GetNumberOfGenerationsFromBase (const char *name)
 Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class).
 
virtual void Delete ()
 Delete a VTK object.
 
virtual void FastDelete ()
 Delete a reference to this object.
 
void InitializeObjectBase ()
 
void Print (ostream &os)
 Print an object to an ostream.
 
void Register (vtkObjectBase *o)
 Increase the reference count (mark as used by another object).
 
virtual void UnRegister (vtkObjectBase *o)
 Decrease the reference count (release by another object).
 
int GetReferenceCount ()
 Return the current reference count of this object.
 
void SetReferenceCount (int)
 Sets the reference count.
 
bool GetIsInMemkind () const
 A local state flag that remembers whether this object lives in the normal or extended memory space.
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses.
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses.
 

Static Public Member Functions

static vtkTypeBool IsTypeOf (const char *type)
 
static vtkSMPMergePointsSafeDownCast (vtkObjectBase *o)
 
static vtkSMPMergePointsNew ()
 
- Static Public Member Functions inherited from vtkMergePoints
static vtkMergePointsNew ()
 
static vtkTypeBool IsTypeOf (const char *type)
 
static vtkMergePointsSafeDownCast (vtkObjectBase *o)
 
- Static Public Member Functions inherited from vtkPointLocator
static vtkPointLocatorNew ()
 Construct with automatic computation of divisions, averaging 25 points per bucket.
 
static vtkTypeBool IsTypeOf (const char *type)
 Standard methods for type management and printing.
 
static vtkPointLocatorSafeDownCast (vtkObjectBase *o)
 Standard methods for type management and printing.
 
- Static Public Member Functions inherited from vtkIncrementalPointLocator
static vtkTypeBool IsTypeOf (const char *type)
 
static vtkIncrementalPointLocatorSafeDownCast (vtkObjectBase *o)
 
- Static Public Member Functions inherited from vtkAbstractPointLocator
static vtkTypeBool IsTypeOf (const char *type)
 Standard type and print methods.
 
static vtkAbstractPointLocatorSafeDownCast (vtkObjectBase *o)
 Standard type and print methods.
 
- Static Public Member Functions inherited from vtkLocator
static vtkTypeBool IsTypeOf (const char *type)
 Standard type and print methods.
 
static vtkLocatorSafeDownCast (vtkObjectBase *o)
 Standard type and print methods.
 
- Static Public Member Functions inherited from vtkObject
static vtkObjectNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
 
static void BreakOnError ()
 This method is called when vtkErrorMacro executes.
 
static void SetGlobalWarningDisplay (vtkTypeBool val)
 This is a global flag that controls whether any debug, warning or error messages are displayed.
 
static void GlobalWarningDisplayOn ()
 This is a global flag that controls whether any debug, warning or error messages are displayed.
 
static void GlobalWarningDisplayOff ()
 This is a global flag that controls whether any debug, warning or error messages are displayed.
 
static vtkTypeBool GetGlobalWarningDisplay ()
 This is a global flag that controls whether any debug, warning or error messages are displayed.
 
- Static Public Member Functions inherited from vtkObjectBase
static vtkTypeBool IsTypeOf (const char *name)
 Return 1 if this class type is the same type of (or a subclass of) the named class.
 
static vtkIdType GetNumberOfGenerationsFromBaseType (const char *name)
 Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class).
 
static vtkObjectBaseNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
 
static void SetMemkindDirectory (const char *directoryname)
 The name of a directory, ideally mounted -o dax, to memory map an extended memory space within.
 
static bool GetUsingMemkind ()
 A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space.
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 Standard methods for type management and printing.
 
 vtkSMPMergePoints ()
 
 ~vtkSMPMergePoints () override
 
- Protected Member Functions inherited from vtkMergePoints
virtual vtkObjectBaseNewInstanceInternal () const
 Standard methods for type management and printing.
 
 vtkMergePoints ()=default
 
 ~vtkMergePoints () override=default
 
- Protected Member Functions inherited from vtkPointLocator
 vtkPointLocator ()
 
 ~vtkPointLocator () override
 
void BuildLocatorInternal () override
 This function is not pure virtual to maintain backwards compatibility.
 
void GetBucketNeighbors (vtkNeighborPoints *buckets, const int ijk[3], const int ndivs[3], int level)
 
void GetOverlappingBuckets (vtkNeighborPoints *buckets, const double x[3], const int ijk[3], double dist, int level)
 
void GetOverlappingBuckets (vtkNeighborPoints *buckets, const double x[3], double dist, int prevMinLevel[3], int prevMaxLevel[3])
 
void GenerateFace (int face, int i, int j, int k, vtkPoints *pts, vtkCellArray *polys)
 
double Distance2ToBucket (const double x[3], const int nei[3])
 
double Distance2ToBounds (const double x[3], const double bounds[6])
 
void GetBucketIndices (const double *x, int ijk[3]) const
 
vtkIdType GetBucketIndex (const double *x) const
 
void ComputePerformanceFactors ()
 
- Protected Member Functions inherited from vtkIncrementalPointLocator
virtual vtkObjectBaseNewInstanceInternal () const
 Standard type and print methods.
 
 vtkIncrementalPointLocator ()
 
 ~vtkIncrementalPointLocator () override
 
- Protected Member Functions inherited from vtkAbstractPointLocator
 vtkAbstractPointLocator ()
 
 ~vtkAbstractPointLocator () override
 
- Protected Member Functions inherited from vtkLocator
 vtkLocator ()
 
 ~vtkLocator () override
 
virtual void BuildLocatorInternal ()
 This function is not pure virtual to maintain backwards compatibility.
 
void ReportReferences (vtkGarbageCollector *) override
 
- Protected Member Functions inherited from vtkObject
 vtkObject ()
 
 ~vtkObject () override
 
void RegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr)
 These methods allow a command to exclusively grab all events.
 
void InternalReleaseFocus ()
 These methods allow a command to exclusively grab all events.
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void RegisterInternal (vtkObjectBase *, vtkTypeBool check)
 
virtual void UnRegisterInternal (vtkObjectBase *, vtkTypeBool check)
 
virtual void ReportReferences (vtkGarbageCollector *)
 
virtual void ObjectFinalize ()
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Protected Attributes

std::atomic< vtkIdTypeAtomicInsertionId
 
- Protected Attributes inherited from vtkPointLocator
vtkPointsPoints
 
int Divisions [3]
 
int NumberOfPointsPerBucket
 
vtkIdList ** HashTable
 
double H [3]
 
double InsertionTol2
 
vtkIdType InsertionPointId
 
double InsertionLevel
 
double HX
 
double HY
 
double HZ
 
double FX
 
double FY
 
double FZ
 
double BX
 
double BY
 
double BZ
 
vtkIdType XD
 
vtkIdType YD
 
vtkIdType ZD
 
vtkIdType SliceSize
 
- Protected Attributes inherited from vtkAbstractPointLocator
double Bounds [6]
 
vtkIdType NumberOfBuckets
 
- Protected Attributes inherited from vtkLocator
vtkDataSetDataSet
 
vtkTypeBool UseExistingSearchStructure
 
vtkTypeBool Automatic
 
double Tolerance
 
int MaxLevel
 
int Level
 
vtkTimeStamp BuildTime
 
- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
std::string ObjectName
 
- Protected Attributes inherited from vtkObjectBase
std::atomic< int32_t > ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Additional Inherited Members

- Static Protected Member Functions inherited from vtkObjectBase
static vtkMallocingFunction GetCurrentMallocFunction ()
 
static vtkReallocingFunction GetCurrentReallocFunction ()
 
static vtkFreeingFunction GetCurrentFreeFunction ()
 
static vtkFreeingFunction GetAlternateFreeFunction ()
 

Detailed Description

Class designed to help with merging of points in parallel.

vtkSMPMergePoints is a subclass of vtkMergePoints designed to help with merging of points generated by using multiple locators in parallel. Its main functionality is provided by the Merge function. It also has a few additional convenience functions. Merge is thread safe as long as no two threads are merging the same bin. The common way of using vtkSMPMergePoints is:

Definition at line 34 of file vtkSMPMergePoints.h.

Member Typedef Documentation

◆ Superclass

Definition at line 37 of file vtkSMPMergePoints.h.

Constructor & Destructor Documentation

◆ vtkSMPMergePoints()

vtkSMPMergePoints::vtkSMPMergePoints ( )
protected

◆ ~vtkSMPMergePoints()

vtkSMPMergePoints::~vtkSMPMergePoints ( )
overrideprotected

Member Function Documentation

◆ IsTypeOf()

static vtkTypeBool vtkSMPMergePoints::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual vtkTypeBool vtkSMPMergePoints::IsA ( const char *  type)
virtual

Standard methods for type management and printing.

Reimplemented from vtkMergePoints.

◆ SafeDownCast()

static vtkSMPMergePoints * vtkSMPMergePoints::SafeDownCast ( vtkObjectBase o)
static

◆ NewInstanceInternal()

virtual vtkObjectBase * vtkSMPMergePoints::NewInstanceInternal ( ) const
protectedvirtual

Standard methods for type management and printing.

Reimplemented from vtkMergePoints.

◆ NewInstance()

vtkSMPMergePoints * vtkSMPMergePoints::NewInstance ( ) const

◆ New()

static vtkSMPMergePoints * vtkSMPMergePoints::New ( )
static

◆ PrintSelf()

void vtkSMPMergePoints::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
overridevirtual

Standard type and print methods.

Reimplemented from vtkMergePoints.

◆ InitializeMerge()

void vtkSMPMergePoints::InitializeMerge ( )

This should be called from 1 thread before any call to Merge.

◆ Merge()

void vtkSMPMergePoints::Merge ( vtkSMPMergePoints locator,
vtkIdType  idx,
vtkPointData outPd,
vtkPointData inPd,
vtkIdList idList 
)

Merge the points of one of the bins from the given locator to the same bin of the current locator.

Note that this requires that the two locators have identical binning structures. This also merges point data given in the inPD argument to the outPd. Furthermore, it generates a map of the old ids of the input locator to the new ids. This is stored in the idList argument. The map is idList[oldId] = newId.

◆ FixSizeOfPointArray()

void vtkSMPMergePoints::FixSizeOfPointArray ( )

At the of the merge, this can be called to set the MaxId of the points array to the maximum id in the locator.

The current design usage is as follows:

  • Allocate points with points->Resize(numPts). NumPts should be >= total number of points
  • Do bunch of merging with outLocator->Merge(inLocator[i], ...)
  • Fix the size of points with outLocator->FixSizeOfPointArray()

◆ GetMaxId()

vtkIdType vtkSMPMergePoints::GetMaxId ( )
inline

Returns the biggest id in the locator.

Definition at line 71 of file vtkSMPMergePoints.h.

◆ GetNumberOfIdsInBucket()

vtkIdType vtkSMPMergePoints::GetNumberOfIdsInBucket ( vtkIdType  idx)
inline

Returns the number of points in a bin.

Definition at line 77 of file vtkSMPMergePoints.h.

◆ GetNumberOfBuckets()

vtkIdType vtkSMPMergePoints::GetNumberOfBuckets ( )
inlineoverridevirtual

Returns the number of bins.

Reimplemented from vtkAbstractPointLocator.

Definition at line 91 of file vtkSMPMergePoints.h.

Member Data Documentation

◆ AtomicInsertionId

std::atomic<vtkIdType> vtkSMPMergePoints::AtomicInsertionId
protected

Definition at line 97 of file vtkSMPMergePoints.h.


The documentation for this class was generated from the following file: