00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __CHANVIEWPORT_H__
00020 #define __CHANVIEWPORT_H__
00021
00022
00023 class EXPCL_PANDA ChanViewport {
00024 private:
00025 float _left, _right, _bottom, _top;
00026
00027 INLINE ChanViewport(void);
00028 public:
00029 INLINE ChanViewport(float, float, float, float);
00030 INLINE ChanViewport(const ChanViewport&);
00031 INLINE ~ChanViewport(void);
00032 INLINE ChanViewport& operator=(const ChanViewport&);
00033
00034 INLINE float left(void) const;
00035 INLINE float right(void) const;
00036 INLINE float bottom(void) const;
00037 INLINE float top(void) const;
00038 };
00039
00040 #include <pandabase.h>
00041
00042 #include "chanviewport.I"
00043
00044 #endif