00001 // This is oxl/mvl/PMatrixAffine.h 00002 #ifndef PMatrixAffine_h_ 00003 #define PMatrixAffine_h_ 00004 //: 00005 // \file 00006 // \brief Affine 3x4 projection matrix 00007 // 00008 // A class to hold an affine camera, a constrained form of the 00009 // perspective projection matrix, and use it to 00010 // perform common operations e.g. projecting point in 3d space to 00011 // its image on the image plane 00012 // 00013 // \verbatim 00014 // Modifications 00015 // 10 Sep. 2004 Peter Vanroose Inlined all 1-line methods in class decl 00016 // \endverbatim 00017 00018 #include <mvl/PMatrix.h> 00019 00020 class PMatrixAffine : public PMatrix 00021 { 00022 public: 00023 PMatrixAffine(void) {} 00024 ~PMatrixAffine(void) {} 00025 }; 00026 00027 #endif // PMatrixAffine_h_