Property | Type | Description | |
---|---|---|---|
CGPointZero |
Method | Description | |
---|---|---|
Add ( |
Translates the point by the specified size.
|
|
CGPointEqualToPoint ( |
Indicates whether two points are equal. Original declaration is : int CGPointEqualToPoint ( CGPoint point1, CGPoint point2 ); |
|
CGPointMake ( |
Returns a point structure constructed from coordinate values you provide. Original declaration is : CGPoint CGPointMake ( float x, float y ); |
|
Substract ( |
Translates the point by the specified size.
|
|
Substract ( |
Computes the size between the two points. The values are always positives.
|
|
operator ( ) : |
Implements the operator +.
|
|
operator ( ) : |
Implements the operator -.
|
public static Add ( |
||
cgPoint | A point. | |
cgSize | A size. | |
return |
public static CGPointEqualToPoint ( |
||
point1 | The first point to examine. | |
point2 | The second point to examine. | |
return | int |
public static CGPointMake ( |
||
x | The x-coordinate of the point to construct. | |
y | The y-coordinate of the point to construct. | |
return |
public static Substract ( |
||
cgPoint | A point. | |
cgSize | A size. | |
return |
public static Substract ( |
||
cgPoint1 | The point 1. | |
cgPoint2 | The point 2. | |
return |