次の方法で共有


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;

適用対象