18 #ifndef __itkAsinImageAdaptor_h
19 #define __itkAsinImageAdaptor_h
22 #include "vnl/vnl_math.h"
40 template<
class TInternalType,
class TExternalType >
53 static inline void Set(TInternalType & output,
const TExternalType & input)
54 { output = (TInternalType)vcl_asin( (
double)input ); }
56 static inline TExternalType Get(
const TInternalType & input)
57 {
return (TExternalType)vcl_asin( (
double)input ); }
71 template<
class TImage,
class TOutputPixelType >
74 Accessor::AsinPixelAccessor<
75 typename TImage::PixelType,
100 void operator=(
const Self &);