123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /****************************************************************************
- Copyright (c) 2010-2012 cocos2d-x.org
- Copyright (c) 2013-2017 Chukong Technologies
- 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 __MATH_CCGEOMETRY_H__
- #define __MATH_CCGEOMETRY_H__
- #include "platform/CCPlatformMacros.h"
- #include "base/ccMacros.h"
- #include "math/CCMath.h"
- /**
- * @addtogroup base
- * @{
- */
- NS_CC_BEGIN
- class CC_DLL Size
- {
- public:
- /**Width of the Size.*/
- float width;
- /**Height of the Size.*/
- float height;
- public:
- /**Conversion from Vec2 to Size.*/
- operator Vec2() const
- {
- return Vec2(width, height);
- }
- public:
- /**
- @{
- Constructor.
- @param width Width of the size.
- @param height Height of the size.
- @param other Copy constructor.
- @param point Conversion from a point.
- */
- Size();
- Size(float width, float height);
- Size(const Size& other);
- explicit Size(const Vec2& point);
- /**@}*/
- /**
- * @js NA
- * @lua NA
- */
- Size& operator= (const Size& other);
- /**
- * @js NA
- * @lua NA
- */
- Size& operator= (const Vec2& point);
- /**
- * @js NA
- * @lua NA
- */
- Size operator+(const Size& right) const;
- /**
- * @js NA
- * @lua NA
- */
- Size operator-(const Size& right) const;
- /**
- * @js NA
- * @lua NA
- */
- Size operator*(float a) const;
- /**
- * @js NA
- * @lua NA
- */
- Size operator/(float a) const;
- /**
- Set the width and height of Size.
- * @js NA
- * @lua NA
- */
- void setSize(float width, float height);
- /**
- Check if two size is the same.
- * @js NA
- */
- bool equals(const Size& target) const;
- /**Size(0,0).*/
- static const Size ZERO;
- };
- /**Rectangle area.*/
- class CC_DLL Rect
- {
- public:
- /**Low left point of rect.*/
- Vec2 origin;
- /**Width and height of the rect.*/
- Size size;
- 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
- */
- Rect(const Vec2& pos, const Size& dimension);
- /**
- Copy constructor.
- * @js NA
- * @lua NA
- */
- Rect(const Rect& other);
- /**
- * @js NA
- * @lua NA
- */
- Rect& operator= (const Rect& other);
- /**
- 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
- */
- float getMinX() const; /// return the leftmost x-value of current rect
- /**
- Get the X coordinate of center point.
- * @js NA
- */
- float getMidX() const; /// return the midpoint x-value of current rect
- /**
- Get the right of rect.
- * @js NA
- */
- float getMaxX() const; /// return the rightmost x-value of current rect
- /**
- Get the bottom of rect.
- * @js NA
- */
- float getMinY() const; /// return the bottommost y-value of current rect
- /**
- Get the Y coordinate of center point.
- * @js NA
- */
- float getMidY() const; /// return the midpoint y-value of current rect
- /**
- Get top of rect.
- * @js NA
- */
- float getMaxY() const; /// return the topmost y-value of current rect
- /**
- 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
- */
- Rect unionWithRect(const Rect & rect) const;
- /**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
- /// @}
- #endif // __MATH_CCGEOMETRY_H__
|