Skip to content

Libs/Optimize/Neighborhood/ParticlePointIndexPair.h

Namespaces

Name
shapeworks
User usage reporting (telemetry)

Classes

Name
struct shapeworks::ParticlePointIndexPair

Source code

```cpp

pragma once

include "itkPoint.h"

namespace shapeworks { struct ParticlePointIndexPair { typedef itk::Point PointType; ParticlePointIndexPair() {} ParticlePointIndexPair(const PointType& p, unsigned int i = 0) { Point = p; Index = i; } ParticlePointIndexPair(const ParticlePointIndexPair& o) { this->operator=(o); } const ParticlePointIndexPair& operator=(const ParticlePointIndexPair& o) { Point = o.Point; Index = o.Index; return *this; } PointType Point; unsigned int Index; };

} // namespace shapeworks ```


Updated on 2026-03-31 at 16:02:11 +0000