CGAffineTransform.TransformPoint(CGPoint) Method

Definition

Transforms the coordinates of the provided point by the affine.

public CoreGraphics.CGPoint TransformPoint (CoreGraphics.CGPoint point);
member this.TransformPoint : CoreGraphics.CGPoint -> CoreGraphics.CGPoint

Parameters

point
CGPoint

The point to transform.

Returns

The point translated to the new coordinate space.

Remarks

The point defined by x, y is transformed like this:

new_x = xx * x + xy * y + x0;

new_y = yx * x + yy * y + y0;

Applies to