共用方式為


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;

適用於