Documentation
Urho3D::IntRect Class Reference
Two-dimensional bounding rectangle with integer values. More...
#include <Rect.h>
Collaboration diagram for Urho3D::IntRect:
Public Member Functions | |
| IntRect () | |
| Construct a zero rect. | |
| IntRect (int left, int top, int right, int bottom) | |
| Construct from coordinates. | |
| IntRect (const int *data) | |
| Construct from an int array. | |
| bool | operator== (const IntRect &rhs) const |
| Test for equality with another rect. | |
| bool | operator!= (const IntRect &rhs) const |
| Test for inequality with another rect. | |
| IntVector2 | Size () const |
| Return size. | |
| int | Width () const |
| Return width. | |
| int | Height () const |
| Return height. | |
| Intersection | IsInside (const IntVector2 &point) const |
| Test whether a point is inside. | |
| const int * | Data () const |
| Return integer data. | |
| String | ToString () const |
| Return as string. | |
Public Attributes | |
| int | left_ |
| Left coordinate. | |
| int | top_ |
| Top coordinate. | |
| int | right_ |
| Right coordinate. | |
| int | bottom_ |
| Bottom coordinate. | |
Static Public Attributes | |
| static const IntRect | ZERO |
| Zero-sized rect. | |
Detailed Description
Two-dimensional bounding rectangle with integer values.
The documentation for this class was generated from the following files:
- /home/travis/build/urho3d/Urho3D/Source/Urho3D/Math/Rect.h
- /home/travis/build/urho3d/Urho3D/Source/Urho3D/Math/Rect.cpp
