00001 #ifndef vnl_double_3x3_h_ 00002 #define vnl_double_3x3_h_ 00003 // This is vxl/vnl/vnl_double_3x3.h 00004 00005 //: \file 00006 // \brief vnl_double_3x3 is a vnl_matrix<double> of fixed size 3x3. It is merely a typedef for vnl_matrix_fixed<double,3,3> 00007 // \author Andrew W. Fitzgibbon, Oxford RRG, 04 Aug 96 00008 // 00009 // Modifications: 00010 // LSB (Manchester) 26/3/01 Tidied documentation 00011 // 00012 //----------------------------------------------------------------------------- 00013 00014 #include <vnl/vnl_matrix_fixed.h> 00015 00016 typedef vnl_matrix_fixed<double,3,3> vnl_double_3x3; 00017 00018 #endif // vnl_double_3x3_h_