00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkCrossHelper_h
00018 #define __itkCrossHelper_h
00019
00020 namespace itk
00021 {
00031 template< typename TVector >
00032 class CrossHelper
00033 {
00034 public:
00035 typedef TVector VectorType;
00036 typedef typename VectorType::ValueType ValueType;
00037
00038 itkStaticConstMacro ( Dimension, unsigned int, VectorType::Dimension );
00039
00045 VectorType operator ( ) ( const VectorType& iU,
00046 const VectorType& iV ) const
00047 {
00048 assert ( Dimension > 2 );
00049
00050 VectorType oCross;
00051
00052
00053 oCross[0] = iU[1] * iV[2] - iV[1] * iU[2];
00054 oCross[1] = iV[0] * iU[2] - iU[0] * iV[2];
00055 oCross[2] = iU[0] * iV[1] - iV[0] * iU[1];
00056
00057 for( unsigned int dim = 3; dim < Dimension; dim++ )
00058 {
00059 oCross[dim] = 0.0;
00060 }
00061
00062 return oCross;
00063 }
00064 };
00065 }
00066
00067 #endif
00068