mirror of https://github.com/axmolengine/axmol.git
27 lines
551 B
C++
27 lines
551 B
C++
#ifndef __VISIBLERECT_H__
|
|
#define __VISIBLERECT_H__
|
|
|
|
#include "cocos2d.h"
|
|
USING_NS_CC;
|
|
|
|
class VisibleRect
|
|
{
|
|
public:
|
|
static CCRect getVisibleRect();
|
|
|
|
static CCPoint left();
|
|
static CCPoint right();
|
|
static CCPoint top();
|
|
static CCPoint bottom();
|
|
static CCPoint center();
|
|
static CCPoint leftTop();
|
|
static CCPoint rightTop();
|
|
static CCPoint leftBottom();
|
|
static CCPoint rightBottom();
|
|
private:
|
|
static void lazyInit();
|
|
static CCRect s_visibleRect;
|
|
};
|
|
|
|
#endif /* __VISIBLERECT_H__ */
|