axmol/core/math/Rect.h

150 lines
3.9 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2017 Chukong Technologies
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-10-24 21:55:48 +08:00
Copyright (c) 2021 Bytedance Inc.
2019-11-23 20:27:39 +08:00
2022-01-04 12:36:20 +08:00
https://adxeproject.github.io/
2019-11-23 20:27:39 +08:00
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.
****************************************************************************/
2021-10-23 23:27:14 +08:00
#ifndef __MATH_RECT_H__
#define __MATH_RECT_H__
2019-11-23 20:27:39 +08:00
2021-10-23 23:27:14 +08:00
#include "math/Vec2.h"
2019-11-23 20:27:39 +08:00
/**
* @addtogroup base
* @{
*/
NS_CC_BEGIN
/**Rectangle area.*/
class CC_DLL Rect
{
public:
/**Low left point of rect.*/
Vec2 origin;
/**Width and height of the rect.*/
2021-10-23 23:27:14 +08:00
Vec2 size;
2019-11-23 20:27:39 +08:00
public:
/**
Constructor an empty Rect.
* @js NA
*/
Rect();
/**
Constructor a rect.
* @js NA
*/
Rect(float x, float y, float width, float height);
/**
Constructor a rect.
* @js NA
*/
2021-10-23 23:27:14 +08:00
Rect(const Vec2& pos, const Vec2& dimension);
2019-11-23 20:27:39 +08:00
/**
Copy constructor.
* @js NA
* @lua NA
*/
Rect(const Rect& other);
/**
* @js NA
* @lua NA
*/
2021-12-25 10:04:45 +08:00
Rect& operator=(const Rect& other);
2019-11-23 20:27:39 +08:00
/**
Set the x, y, width and height of Rect.
* @js NA
* @lua NA
*/
void setRect(float x, float y, float width, float height);
/**
Get the left of the rect.
* @js NA
*/
2021-12-25 10:04:45 +08:00
float getMinX() const; /// return the leftmost x-value of current rect
2019-11-23 20:27:39 +08:00
/**
Get the X coordinate of center point.
* @js NA
*/
2021-12-25 10:04:45 +08:00
float getMidX() const; /// return the midpoint x-value of current rect
2019-11-23 20:27:39 +08:00
/**
Get the right of rect.
* @js NA
*/
2021-12-25 10:04:45 +08:00
float getMaxX() const; /// return the rightmost x-value of current rect
2019-11-23 20:27:39 +08:00
/**
Get the bottom of rect.
* @js NA
*/
2021-12-25 10:04:45 +08:00
float getMinY() const; /// return the bottommost y-value of current rect
2019-11-23 20:27:39 +08:00
/**
Get the Y coordinate of center point.
* @js NA
*/
2021-12-25 10:04:45 +08:00
float getMidY() const; /// return the midpoint y-value of current rect
2019-11-23 20:27:39 +08:00
/**
Get top of rect.
* @js NA
*/
2021-12-25 10:04:45 +08:00
float getMaxY() const; /// return the topmost y-value of current rect
2019-11-23 20:27:39 +08:00
/**
Compare two rects.
* @js NA
*/
bool equals(const Rect& rect) const;
/**
Check if the points is contained in the rect.
* @js NA
*/
bool containsPoint(const Vec2& point) const;
/**
Check the intersect status of two rects.
* @js NA
*/
bool intersectsRect(const Rect& rect) const;
/**
Check the intersect status of the rect and a circle.
* @js NA
*/
bool intersectsCircle(const Vec2& center, float radius) const;
/**
Get the min rect which can contain this and rect.
* @js NA
* @lua NA
*/
2021-12-25 10:04:45 +08:00
Rect unionWithRect(const Rect& rect) const;
2019-11-23 20:27:39 +08:00
/**Compute the min rect which can contain this and rect, assign it to this.*/
void merge(const Rect& rect);
/**An empty Rect.*/
static const Rect ZERO;
};
NS_CC_END
// end of base group
/// @}
2021-12-25 10:04:45 +08:00
#endif // __MATH_RECT_H__