axmol/cocos2dx/include/CCGeometry.h

116 lines
3.2 KiB
C
Raw Normal View History

2010-08-04 16:54:58 +08:00
/****************************************************************************
Copyright (c) 2010 cocos2d-x.org
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __CCGEMETRY_H__
#define __CCGEMETRY_H__
2010-08-04 16:54:58 +08:00
#include "CCCommon.h"
NS_CC_BEGIN
2010-08-04 16:54:58 +08:00
typedef float CCFloat;
2010-08-04 16:54:58 +08:00
class CC_DLL CCPoint
2010-08-04 16:54:58 +08:00
{
public:
float x;
float y;
public:
CCPoint();
CCPoint(float x, float y);
2010-08-04 16:54:58 +08:00
public:
static bool CCPointEqualToPoint(const CCPoint& point1, const CCPoint& point2);
2010-08-04 16:54:58 +08:00
};
class CC_DLL CCSize
2010-08-04 16:54:58 +08:00
{
public:
float width;
float height;
public:
CCSize();
CCSize(float width, float height);
2010-08-04 16:54:58 +08:00
public:
static bool CCSizeEqualToSize(const CCSize& size1, const CCSize& size2);
2010-08-04 16:54:58 +08:00
};
class CC_DLL CCRect
2010-08-04 16:54:58 +08:00
{
public:
CCPoint origin;
CCSize size;
2010-08-04 16:54:58 +08:00
public:
CCRect();
CCRect(float x, float y, float width, float height);
2010-08-04 16:54:58 +08:00
public:
2010-09-29 17:39:45 +08:00
//! return the leftmost x-value of 'rect'
static CCFloat CCRectGetMinX(const CCRect& rect);
2010-08-04 16:54:58 +08:00
2010-09-29 17:39:45 +08:00
//! return the rightmost x-value of 'rect'
static CCFloat CCRectGetMaxX(const CCRect& rect);
2010-08-04 16:54:58 +08:00
2010-09-29 17:39:45 +08:00
//! return the midpoint x-value of 'rect'
static CCFloat CCRectGetMidX(const CCRect& rect);
2010-08-04 16:54:58 +08:00
2010-09-29 17:39:45 +08:00
//! Return the bottommost y-value of `rect'
static CCFloat CCRectGetMinY(const CCRect& rect);
2010-08-04 16:54:58 +08:00
2010-09-29 17:39:45 +08:00
//! Return the topmost y-value of `rect'
static CCFloat CCRectGetMaxY(const CCRect& rect);
2010-08-04 16:54:58 +08:00
2010-09-29 17:39:45 +08:00
//! Return the midpoint y-value of `rect'
static CCFloat CCRectGetMidY(const CCRect& rect);
2010-08-04 16:54:58 +08:00
static bool CCRectEqualToRect(const CCRect& rect1, const CCRect& rect2);
2010-08-04 16:54:58 +08:00
static bool CCRectContainsPoint(const CCRect& rect, const CCPoint& point);
static bool CCRectIntersectsRect(const CCRect& rectA, const CCRect& rectB);
2010-08-04 16:54:58 +08:00
};
#define CCPointMake(x, y) CCPoint((x), (y))
#define CCSizeMake(width, height) CCSize((width), (height))
#define CCRectMake(x, y, width, height) CCRect((x), (y), (width), (height))
2010-08-04 16:54:58 +08:00
const CCPoint CCPointZero = CCPointMake(0,0);
2010-08-04 16:54:58 +08:00
/* The "zero" size -- equivalent to CCSizeMake(0, 0). */
const CCSize CCSizeZero = CCSizeMake(0,0);
2010-08-04 16:54:58 +08:00
/* The "zero" rectangle -- equivalent to CCRectMake(0, 0, 0, 0). */
const CCRect CCRectZero = CCRectMake(0,0,0,0);
2010-08-04 16:54:58 +08:00
NS_CC_END
2010-08-04 16:54:58 +08:00
#endif // __CCGEMETRY_H__