cocos2dx 下的CCRect

 

刚开始写cocos2dx,对一些东西还是很不熟悉,CCRect的用法就不感冒

先下来,省的忘记~~~

class CC_DLL CCRect : public CCObject
{
public:
    //CCRect的原点
    CCPoint origin;
    //CCRect的大小
    CCSize  size;

public:
    //构造函数
    CCRect(); 
    CCRect(float x, float y, float width, float height);    
    CCRect(const CCRect& other);
    //意思是: = 操作就是从另一个CCRect的值赋给自己?
    CCRect& operator= (const CCRect& other); 
    //设置其origin 以及 size
    void setRect(float x, float y, float width, float height);
    virtual CCObject* copyWithZone(CCZone* pZone);
    //获取X最小值
    float getMinX() const; /// return the leftmost x-value of current rect
    //获取X中间值
    float getMidX() const; /// return the midpoint x-value of current rect
    //获取X最大值
    float getMaxX() const; /// return the rightmost x-value of current rect
    //获取Y最小值
    float getMinY() const; /// return the bottommost y-value of current rect
    //获取Y中间值
    float getMidY() const; /// return the midpoint y-value of current rect
    //获取最大Y值
    float getMaxY() const; /// return the topmost y-value of current rect
    //比较两个CCRect是否吻合
    bool equals(const CCRect& rect) const;  
    //是否包含某点,在边上也算的
    bool containsPoint(const CCPoint& point) const;
    //是否相交
    bool intersectsRect(const CCRect& rect) const;
    
public:
    /** @deprecated use CCRect::equals(const CCRect&) instead, like r1.equals(r2) */
    //比较两个CCRect是否吻合
    CC_DEPRECATED_ATTRIBUTE static bool CCRectEqualToRect(const CCRect& rect1, const CCRect& rect2);
    /** @deprecated use CCRect::containsPoint(const CCPoint&) instead, like rect.containsPoint(point) */
    //CCRect是否包含某点
    CC_DEPRECATED_ATTRIBUTE static bool CCRectContainsPoint(const CCRect& rect, const CCPoint& point);
    /** @deprecated use CCRect::intersectsRect(const CCRect&) instead, like r1.intersectsRect(r2) */
    //两个CCRect是否相交
    CC_DEPRECATED_ATTRIBUTE static bool CCRectIntersectsRect(const CCRect& rectA, const CCRect& rectB);
};

//定义CCRectMake方法,等同CCRect构造方法
#define CCRectMake(x, y, width, height) CCRect((float)(x), (float)(y), (float)(width), (float)(height))

/* The "zero" rectangle -- equivalent to CCRectMake(0, 0, 0, 0). */ 
//定义CCRectZero,等同构造一个origin size都为0的CCRect
const CCRect CCRectZero = CCRectMake(0,0,0,0);

你可能感兴趣的:(cocos2dx 下的CCRect)