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 Point2ShapePredicate.ih
19 * @author Tristan Roussillon (\c tristan.roussillon@liris.cnrs.fr )
20 * Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), CNRS, France
24 * Implementation of inline methods defined in Point2ShapePredicate.h
26 * This file is part of the DGtal library.
30//////////////////////////////////////////////////////////////////////////////
32//////////////////////////////////////////////////////////////////////////////
34///////////////////////////////////////////////////////////////////////////////
35// IMPLEMENTATION of inline methods.
36///////////////////////////////////////////////////////////////////////////////
38///////////////////////////////////////////////////////////////////////////////
39// ----------------------- Standard services ------------------------------
42template <typename TSurface, bool isUpward, bool isClosed>
44DGtal::functors::Point2ShapePredicate<TSurface,isUpward,isClosed>::~Point2ShapePredicate()
48template <typename TSurface, bool isUpward, bool isClosed>
50DGtal::functors::Point2ShapePredicate<TSurface,isUpward,isClosed>::Point2ShapePredicate(
51 const TSurface& aSurface):
58 * @param other the object to clone.
60template <typename TSurface, bool isUpward, bool isClosed>
62DGtal::functors::Point2ShapePredicate<TSurface,isUpward,isClosed>::Point2ShapePredicate(
63 const Point2ShapePredicate & other):
69template <typename TSurface, bool isUpward, bool isClosed>
72DGtal::functors::Point2ShapePredicate<TSurface,isUpward,isClosed>
73::operator()(const Point& p) const
75 DGtal::functors::Point2ShapePredicateComparator<
78 isClosed> theComparator;
80 return theComparator(myS.signedDistance(p),0);
85///////////////////////////////////////////////////////////////////////////////
86// Interface - public :
88template <typename TSurface, bool isUpward, bool isClosed>
91DGtal::functors::Point2ShapePredicate<TSurface,isUpward,isClosed>
92::selfDisplay ( std::ostream & out ) const
94 out << "[Point2ShapePredicate] :\n";
97 std::string orientation = (isUpward)?
98 "upward oriented":"downward oriented";
99 std::string closure = (isClosed)?
101 out << "(" << orientation << ", " << closure << ")\n";
105///////////////////////////////////////////////////////////////////////////////
106// Implementation of inline functions //
108template <typename TSurface, bool isUpward, bool isClosed>
111DGtal::operator<< ( std::ostream & out,
112 const DGtal::functors::Point2ShapePredicate<TSurface,isUpward,isClosed> & object )
114 object.selfDisplay( out );