CGAffineTransform.TransformPoint(CGPoint) 方法

定义

按仿射值转换所提供的点的坐标。

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

参数

point
CGPoint

要转换的点。

返回

转换为新坐标空间的点。

注解

x、 y 定义的点的转换如下所示:

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

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

适用于