#include <vstgui.h>
struct CPoint;
Structure used for the definition and support of the point in pixel.
CPoint |
1.0 |
-
![[CPoint]](images/CPoint.jpg)
operator () |
1.0 |
Overloads the () operator.
isInside |
1.0 |
Returns true if the point is inside the rectangle.
CRect myRect (0, 0, 100, 200);
CPoint myPoint (12, 23);
if (myPoint.inside (myRect)) {
...
}
operator == |
2.1 |
Overloads the == operator.
operator != |
2.1 |
Overloads the != operator.
offset |
2.1 |
Adds an offset to the point.