/*========================================================================= * * Copyright NumFOCUS * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #ifndef itkSurfaceSpatialObject_h #define itkSurfaceSpatialObject_h #include #include "itkPointBasedSpatialObject.h" #include "itkSurfaceSpatialObjectPoint.h" namespace itk { /** * \class SurfaceSpatialObject * \brief Representation of a Surface based on the spatial object classes. * * The Surface is basically defined by a set of points. * * \sa SurfaceSpatialObjectPoint * \ingroup ITKSpatialObjects */ template > class ITK_TEMPLATE_EXPORT SurfaceSpatialObject : public PointBasedSpatialObject> { public: ITK_DISALLOW_COPY_AND_MOVE(SurfaceSpatialObject); using Self = SurfaceSpatialObject; using Superclass = PointBasedSpatialObject; using Pointer = SmartPointer; using ConstPointer = SmartPointer; using ScalarType = double; using SurfacePointType = TSpatialObjectPointType; using SurfacePointListType = std::vector; using typename Superclass::SpatialObjectPointType; using typename Superclass::PointType; using typename Superclass::TransformType; using typename Superclass::BoundingBoxType; using typename Superclass::CovariantVectorType; using PointContainerType = VectorContainer; using PointContainerPointer = SmartPointer; /** Method for creation through the object factory. */ itkNewMacro(Self); /** \see LightObject::GetNameOfClass() */ itkOverrideGetNameOfClassMacro(SurfaceSpatialObject); /** Restore a spatial object to its initial state, yet preserves Id as well as * parent and children relationships */ void Clear() override; #if !defined(ITK_LEGACY_REMOVE) /** Approximate the normals of the surface. */ itkLegacyMacro(bool Approximate3DNormals()); #endif /** Compute the normals to the surface from neighboring points. */ bool ComputeNormals(); protected: SurfaceSpatialObject(); ~SurfaceSpatialObject() override = default; typename LightObject::Pointer InternalClone() const override; }; } // end namespace itk #ifndef ITK_MANUAL_INSTANTIATION # include "itkSurfaceSpatialObject.hxx" #endif #endif // itkSurfaceSpatialObject_h