Method | Description | |
---|---|---|
CGAffineTransformIdentity ( ) : |
The identity transform. Original signature is : const CGAffineTransform CGAffineTransformIdentity;
|
|
CGPointApplyAffineTransform ( |
Returns the point resulting from an affine transformation of an existing point. Original signature is : CGPoint CGPointApplyAffineTransform ( CGPoint point, CGAffineTransform t ); Available in Mac OS X version 10.0 and later.
|
|
CGRectApplyAffineTransform ( |
Applies an affine transform to a rectangle. Original signature is : CGRect CGRectApplyAffineTransform ( CGRect rect, CGAffineTransform t ); Available in Mac OS X v10.4 and later.
|
|
CGSizeApplyAffineTransform ( |
Returns the height and width resulting from a transformation of an existing height and width. Original signature is : CGSize CGSizeApplyAffineTransform ( CGSize size, CGAffineTransform t ); Available in Mac OS X version 10.0 and later.
|
|
Concat ( |
Returns an affine transformation matrix constructed by combining two existing affine transforms. Original signature is : CGAffineTransform CGAffineTransformConcat ( CGAffineTransform t1, CGAffineTransform t2 ); Available in Mac OS X version 10.0 and later.
|
|
EqualToTransform ( |
Checks whether two affine transforms are equal. Original signature is : bool CGAffineTransformEqualToTransform ( CGAffineTransform t1, CGAffineTransform t2 ); Available in Mac OS X v10.4 and later.
|
|
Invert ( |
Returns an affine transformation matrix constructed by inverting an existing affine transform. Original signature is : CGAffineTransform CGAffineTransformInvert ( CGAffineTransform t ); Available in Mac OS X version 10.0 and later.
|
|
IsIdentity ( |
Checks whether an affine transform is the identity transform. Original signature is : bool CGAffineTransformIsIdentity ( CGAffineTransform t ); Available in Mac OS X v10.4 and later.
|
|
Make ( |
Returns an affine transformation matrix constructed from values you provide. Original signature is : CGAffineTransform CGAffineTransformMake ( CGFloat a, CGFloat b, CGFloat c, CGFloat d, CGFloat tx, CGFloat ty ); Available in Mac OS X version 10.0 and later.
|
|
MakeRotation ( |
Returns an affine transformation matrix constructed from a rotation value you provide. Original signature is : CGAffineTransform CGAffineTransformMakeRotation ( CGFloat angle ); Available in Mac OS X version 10.0 and later.
|
|
MakeScale ( |
Returns an affine transformation matrix constructed from scaling values you provide. Original signature is : CGAffineTransform CGAffineTransformMakeScale ( CGFloat sx, CGFloat sy ); Available in Mac OS X version 10.0 and later.
|
|
MakeTranslation ( |
Returns an affine transformation matrix constructed from translation values you provide. Original signature is : CGAffineTransform CGAffineTransformMakeTranslation ( CGFloat tx, CGFloat ty ); Available in Mac OS X version 10.0 and later.
|
|
Rotate ( |
Returns an affine transformation matrix constructed by rotating an existing affine transform. Original signature is : CGAffineTransform CGAffineTransformRotate ( CGAffineTransform t, CGFloat angle ); Available in Mac OS X version 10.0 and later.
|
|
Scale ( |
Returns an affine transformation matrix constructed by scaling an existing affine transform. Original signature is : CGAffineTransform CGAffineTransformScale ( CGAffineTransform t, CGFloat sx, CGFloat sy ); Available in Mac OS X version 10.0 and later.
|
|
Translate ( |
Returns an affine transformation matrix constructed by translating an existing affine transform. Original signature is : CGAffineTransform CGAffineTransformTranslate ( CGAffineTransform t, CGFloat tx, CGFloat ty ); Available in Mac OS X version 10.0 and later.
|
public static CGAffineTransformIdentity ( ) : |
||
return |
public static CGPointApplyAffineTransform ( |
||
point | A point that specifies the x- and y-coordinates to transform. | |
t | The affine transform to apply. | |
return |
public static CGRectApplyAffineTransform ( |
||
rect | The rectangle whose corner points you want to transform. | |
t | The affine transform to apply to the rect parameter. | |
return |
public static CGSizeApplyAffineTransform ( |
||
size | A size that specifies the height and width to transform. | |
t | The affine transform to apply. | |
return |
public static Concat ( |
||
t1 | The first affine transform. | |
t2 | The second affine transform. This affine transform is concatenated to the first affine transform. | |
return |
public static EqualToTransform ( |
||
t1 | An affine transform. | |
t2 | An affine transform. | |
return | bool |
public static Invert ( |
||
t | An existing affine transform. | |
return |
public static IsIdentity ( |
||
t | The affine transform to check. | |
return | bool |
public static Make ( |
||
a | The value at position [1,1] in the matrix. | |
b | The value at position [1,2] in the matrix. | |
c | The value at position [2,1] in the matrix. | |
d | The value at position [2,2] in the matrix. | |
tx | The value at position [3,1] in the matrix. | |
ty | The value at position [3,2] in the matrix. | |
return |
public static MakeRotation ( |
||
angle | The angle, in radians, by which this matrix rotates the coordinate system axes. A positive value specifies clockwise rotation, a negative value specifies counterclockwise. | |
return |
public static MakeScale ( |
||
sx | The factor by which to scale the x-axis of the coordinate system. | |
sy | The factor by which to scale the y-axis of the coordinate system. | |
return |
public static MakeTranslation ( |
||
tx | The value by which to move the x-axis of the coordinate system. | |
ty | The value by which to move the y-axis of the coordinate system. | |
return |
public static Rotate ( |
||
t | An existing affine transform. | |
angle | The angle, in radians, by which to rotate the affine transform. | |
return |
public static Scale ( |
||
t | An existing affine transform. | |
sx | The value by which to scale x values of the affine transform. | |
sy | The value by which to scale y values of the affine transform. | |
return |
public static Translate ( |
||
t | An existing affine transform. | |
tx | The value by which to move x values with the affine transform. | |
ty | The value by which to move y values with the affine transform. | |
return |