CGAffineTransform.TransformPoint(CGPoint) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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;