DGtal 1.3.0
Loading...
Searching...
No Matches
SurfelAdjacency.ih
1/**
2 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU Lesser General Public License as
4 * published by the Free Software Foundation, either version 3 of the
5 * License, or (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14 *
15 **/
16
17/**
18 * @file SurfelAdjacency.ih
19 * @author Jacques-Olivier Lachaud (\c jacques-olivier.lachaud@univ-savoie.fr )
20 * Laboratory of Mathematics (CNRS, UMR 5807), University of Savoie, France
21 *
22 * @date 2011/03/18
23 *
24 * Implementation of inline methods defined in SurfelAdjacency.h
25 *
26 * This file is part of the DGtal library.
27 */
28
29///////////////////////////////////////////////////////////////////////////////
30// IMPLEMENTATION of inline methods.
31///////////////////////////////////////////////////////////////////////////////
32
33//////////////////////////////////////////////////////////////////////////////
34#include <cstdlib>
35//////////////////////////////////////////////////////////////////////////////
36
37
38
39///////////////////////////////////////////////////////////////////////////////
40// Implementation of inline methods //
41//-----------------------------------------------------------------------------
42template <DGtal::Dimension dim>
43inline
44DGtal::SurfelAdjacency<dim>::
45~SurfelAdjacency()
46{}
47//-----------------------------------------------------------------------------
48template <DGtal::Dimension dim>
49inline
50DGtal::SurfelAdjacency<dim>::
51SurfelAdjacency( bool int2ext )
52 : myInt2Ext()
53{
54 DGtal::Dimension offset = 0;
55 for ( DGtal::Dimension j = 0; j < dim; ++j )
56 for ( DGtal::Dimension i = 0; i < dim; ++i )
57 myInt2Ext[ offset++ ] = int2ext;
58}
59
60//-----------------------------------------------------------------------------
61template <DGtal::Dimension dim>
62inline
63DGtal::SurfelAdjacency<dim>::
64SurfelAdjacency ( const SurfelAdjacency & other )
65 : myInt2Ext( other.myInt2Ext )
66{
67}
68//-----------------------------------------------------------------------------
69template <DGtal::Dimension dim>
70inline
71DGtal::SurfelAdjacency<dim> &
72DGtal::SurfelAdjacency<dim>::
73operator= ( const SurfelAdjacency & other )
74{
75 if ( this != &other )
76 myInt2Ext = other.myInt2Ext;
77 return *this;
78}
79//-----------------------------------------------------------------------------
80template <DGtal::Dimension dim>
81inline
82void
83DGtal::SurfelAdjacency<dim>::
84setAdjacency( DGtal::Dimension i, DGtal::Dimension j, bool int2ext )
85{
86 myInt2Ext[ i * dim + j ] = int2ext;
87 myInt2Ext[ j * dim + i ] = int2ext;
88}
89//-----------------------------------------------------------------------------
90template <DGtal::Dimension dim>
91inline
92bool
93DGtal::SurfelAdjacency<dim>::
94getAdjacency( DGtal::Dimension i, DGtal::Dimension j ) const
95{
96 return myInt2Ext[ i * dim + j ];
97}
98//-----------------------------------------------------------------------------
99template <DGtal::Dimension dim>
100inline
101void
102DGtal::SurfelAdjacency<dim>::
103selfDisplay ( std::ostream & out ) const
104{
105 out << "[SurfelAdjacency]";
106}
107//-----------------------------------------------------------------------------
108template <DGtal::Dimension dim>
109inline
110bool
111DGtal::SurfelAdjacency<dim>::
112isValid() const
113{
114 return true;
115}
116
117
118
119///////////////////////////////////////////////////////////////////////////////
120// Implementation of inline functions and external operators //
121
122/**
123 * Overloads 'operator<<' for displaying objects of class 'SurfelAdjacency'.
124 * @param out the output stream where the object is written.
125 * @param object the object of class 'SurfelAdjacency' to write.
126 * @return the output stream after the writing.
127 */
128template <DGtal::Dimension dim>
129inline
130std::ostream&
131DGtal::operator<< ( std::ostream & out,
132 const SurfelAdjacency<dim> & object )
133{
134 object.selfDisplay ( out );
135 return out;
136}
137
138// //
139///////////////////////////////////////////////////////////////////////////////
140
141