CGAffineTransform.TransformPoint(CGPoint) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public CoreGraphics.CGPoint TransformPoint (CoreGraphics.CGPoint point);
member this.TransformPoint : CoreGraphics.CGPoint -> CoreGraphics.CGPoint
參數
傳回
轉譯為新座標空間的點。
備註
x 所定義的點,y 會像這樣轉換:
new_x = xx * x + xy * y + x0;
new_y = yx * x + yy * y + y0;
適用於