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