DGtal  0.6.devel
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ImplicitRoundedHyperCube.ih
1 
30 
31 #include <cstdlib>
33 
35 // IMPLEMENTATION of inline methods.
37 
39 // ----------------------- Standard services ------------------------------
40 
44 template <typename T>
45 inline
47 {
48 }
49 
51 // Interface - public :
52 
57 template <typename T>
58 inline
59 void
61 {
62  out << "[ImplicitRoundedHyperCube] center="<<myCenter<<" halfwidth="<<myHalfWidth<<" power="<<myPower;
63 }
64 
69 template <typename T>
70 inline
71 bool
73 {
74  return true;
75 }
76 
77 
78 
80 // Implementation of inline functions //
81 
82 template <typename T>
83 inline
84 std::ostream&
85 DGtal::operator<< ( std::ostream & out,
86  const ImplicitRoundedHyperCube<T> & object )
87 {
88  object.selfDisplay( out );
89  return out;
90 }
91 
92 // //
94 
95