00001 // This is core/vnl/vnl_double_4x3.h 00002 #ifndef vnl_double_4x3_h_ 00003 #define vnl_double_4x3_h_ 00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE 00005 #pragma interface 00006 #endif 00007 //: 00008 // \file 00009 // \brief 4x3 matrix of double 00010 // 00011 // vnl_double_4x3 is a vnl_matrix<double> of fixed size 4x3. It is 00012 // merely a typedef for vnl_matrix_fixed<double,4,3> 00013 // 00014 // \author Geoff Cross 00015 // 00016 //----------------------------------------------------------------------------- 00017 00018 #include <vnl/vnl_matrix_fixed.h> 00019 00020 typedef vnl_matrix_fixed<double,4,3> vnl_double_4x3; 00021 00022 #endif // vnl_double_4x3_h_