Go to the documentation of this file.00001
00002 #ifndef vnl_float_2_h_
00003 #define vnl_float_2_h_
00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00005 #pragma interface
00006 #endif
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include <vnl/vnl_T_n.h>
00021
00022
00023 vnl_T_n_impl(float,2);
00024
00025
00026
00027 inline
00028 float vnl_cross_2d(vnl_float_2 const& v1, vnl_float_2 const& v2)
00029 {
00030 return v1[0] * v2[1] - v1[1] * v2[0];
00031 }
00032
00033 #endif // vnl_float_2_h_