core/vnl/vnl_double_3x4.h
Go to the documentation of this file.
00001 // This is core/vnl/vnl_double_3x4.h
00002 #ifndef vnl_double_3x4_h_
00003 #define vnl_double_3x4_h_
00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00005 #pragma interface
00006 #endif
00007 //:
00008 // \file
00009 // \brief 3x4 Matrix of double
00010 // \author  Andrew W. Fitzgibbon, Oxford RRG
00011 // \date   04 Aug 96
00012 //
00013 //  vnl_double_3x4 is a vnl_matrix<double> of fixed size 3x4.  It is
00014 //  merely a typedef for vnl_matrix_fixed<double,3,4>
00015 //
00016 // \verbatim
00017 //  Modifications
00018 //   4/4/01 LSB (Manchester) Tidied documentation
00019 // \endverbatim
00020 //-----------------------------------------------------------------------------
00021 
00022 #include <vnl/vnl_matrix_fixed.h>
00023 
00024 typedef vnl_matrix_fixed<double,3,4> vnl_double_3x4;
00025 
00026 #endif // vnl_double_3x4_h_