The Machine Perception Toolbox

[Introduction]- [News]- [Download]- [Screenshots]- [Manual (pdf)]- [Forums]- [API Reference]- [Repository ]

 

Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

box.h

Go to the documentation of this file.
00001 #ifndef _BOX_H_
00002 #define _BOX_H_
00003 
00004 /* ================================================================ */
00005 
00006 template <class T>
00007 class TBox {
00008 
00009 public: 
00010   T x;
00011   T y;
00012   T size;
00013         T scale;
00014 
00015     TBox (T size_, T x_, T y_, T scale_);
00016     TBox  ():x(0),y(0),size(0),scale(0){};
00017                 TBox (TBox<double> &other) {
00018                 x = other.x;
00019                 y = other.y;
00020                 size = other.size;
00021                 scale = other.scale;
00022         }
00023 };
00024 
00025 /* ================================================================ */
00026 
00027 #endif  _BOX_H_
00028 
00029 

Generated on Mon Nov 8 17:07:31 2004 for MPT by  doxygen 1.3.9.1