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.
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.
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/>.
18 * @file CanonicCellEmbedder.ih
19 * @author Jacques-Olivier Lachaud (\c jacques-olivier.lachaud@univ-savoie.fr )
20 * Laboratory of Mathematics (CNRS, UMR 5127), University of Savoie, France
24 * Implementation of inline methods defined in CanonicCellEmbedder.h
26 * This file is part of the DGtal library.
29///////////////////////////////////////////////////////////////////////////////
30// IMPLEMENTATION of inline methods.
31///////////////////////////////////////////////////////////////////////////////
33//////////////////////////////////////////////////////////////////////////////
36#include "DGtal/kernel/NumberTraits.h"
37//////////////////////////////////////////////////////////////////////////////
41///////////////////////////////////////////////////////////////////////////////
42// Implementation of inline methods //
43//-----------------------------------------------------------------------------
44template <typename TKSpace>
46DGtal::CanonicCellEmbedder<TKSpace>::
49//-----------------------------------------------------------------------------
50template <typename TKSpace>
52DGtal::CanonicCellEmbedder<TKSpace>::
56//-----------------------------------------------------------------------------
57template <typename TKSpace>
59DGtal::CanonicCellEmbedder<TKSpace>::
60CanonicCellEmbedder( ConstAlias<KSpace> aKSpace )
61 : myKSpace( &aKSpace )
63//-----------------------------------------------------------------------------
64template <typename TKSpace>
66DGtal::CanonicCellEmbedder<TKSpace>::
67CanonicCellEmbedder( const Self & other )
68 : myKSpace( other.myKSpace )
70//-----------------------------------------------------------------------------
71template <typename TKSpace>
73typename DGtal::CanonicCellEmbedder<TKSpace>::Self &
74DGtal::CanonicCellEmbedder<TKSpace>::
75operator=( const Self & other )
77 myKSpace = other.myKSpace;
80//-----------------------------------------------------------------------------
81template <typename TKSpace>
83const typename DGtal::CanonicCellEmbedder<TKSpace>::KSpace &
84DGtal::CanonicCellEmbedder<TKSpace>::space() const
86 ASSERT( this->isValid() );
89//-----------------------------------------------------------------------------
90template <typename TKSpace>
92typename DGtal::CanonicCellEmbedder<TKSpace>::RealPoint
93DGtal::CanonicCellEmbedder<TKSpace>::embed( const Cell & cell ) const
95 return this->operator()( cell );
97//-----------------------------------------------------------------------------
98template <typename TKSpace>
100typename DGtal::CanonicCellEmbedder<TKSpace>::RealPoint
101DGtal::CanonicCellEmbedder<TKSpace>::operator()( const Cell & cell ) const
103 ASSERT( this->isValid() );
104 Point dp = myKSpace->uKCoords( cell );
106 for ( Dimension i = 0; i < dp.size(); ++i )
107 p[ i ] = ( NumberTraits<Integer>::castToDouble( dp[ i ] ) / 2.0 ) - 0.5; /// In Khalimsky Space, 0-Cells have even coordinates, while in the embedding, voxel centers have integer coordinates, we need to shift all coordinates by -1/2
110//-----------------------------------------------------------------------------
111template <typename TKSpace>
114DGtal::CanonicCellEmbedder<TKSpace>::isValid( ) const
116 return myKSpace != 0;
118///////////////////////////////////////////////////////////////////////////////
119// Implementation of inline functions and external operators //
122 * Overloads 'operator<<' for displaying objects of class 'CanonicCellEmbedder'.
123 * @param out the output stream where the object is written.
124 * @param object the object of class 'CanonicCellEmbedder' to write.
125 * @return the output stream after the writing.
127template <typename TKSpace>
130DGtal::operator<< ( std::ostream & out,
131 const CanonicCellEmbedder<TKSpace> & object )
133 object.selfDisplay ( out );
138///////////////////////////////////////////////////////////////////////////////