/usr/include/InsightToolkit/Common/itkMeshRegion.h is in libinsighttoolkit3-dev 3.20.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkMeshRegion.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.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 notices for more information.
=========================================================================*/
#ifndef __itkMeshRegion_h
#define __itkMeshRegion_h
#include "itkRegion.h"
#include "itkObjectFactory.h"
#include "itkNumericTraits.h"
namespace itk
{
/** \class MeshRegion
* \brief A mesh region represents an unstructured region of data.
*
* MeshRegion is an class that represents some unstructured portion or
* piece of a Mesh. The MeshRegion is described as piece i out of N
* total pieces.
*
* \sa Region
* \sa ImageRegion
*
* \ingroup MeshObjects
*/
class ITKCommon_EXPORT MeshRegion: public Region
{
public:
/** Standard class typedefs. */
typedef MeshRegion Self;
typedef Region Superclass;
/** Standard part of all itk objects. */
itkTypeMacro(MeshRegion, Region);
/** Constructor. MeshRegion is a lightweight object and is not reference
* counted. */
MeshRegion();
/** Destructor. MeshRegion is a lightweight object and is not reference
* counted. */
virtual ~MeshRegion();
/** Return the region type. Meshes are described with unstructured regions. */
virtual RegionType GetRegionType() const
{return Superclass::ITK_UNSTRUCTURED_REGION;}
/** Get the number of regions. */
unsigned long GetNumberOfRegions() const
{ return m_NumberOfRegions; };
/** Set the number of regions. */
void SetNumberOfRegions(unsigned long num)
{ if ((num >= 1) && (num <= NumericTraits<unsigned long>::max()))
{ m_NumberOfRegions = num; } }
/** Get the current region. */
unsigned long GetRegion() const
{ return m_Region; }
/** Set the number of regions. */
void SetRegion(unsigned long region)
{ if ((region >= 1) && (region <= NumericTraits<unsigned long>::max()))
{ m_Region = region; } }
private:
// The maximum number of regions possible.
unsigned long int m_NumberOfRegions;
// The specified region.
unsigned long int m_Region;
};
} // end namespace itk
#endif
|