CGAffineTransform.TransformPoint(CGPoint) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Transforme les coordonnées du point fourni par l’affine.
public CoreGraphics.CGPoint TransformPoint (CoreGraphics.CGPoint point);
member this.TransformPoint : CoreGraphics.CGPoint -> CoreGraphics.CGPoint
Paramètres
- point
- CGPoint
Point à transformer.
Retours
Point traduit dans le nouvel espace de coordonnées.
Remarques
Le point défini par x, y est transformé comme suit :
new_x = xx * x + xy * y + x0 ;
new_y = yx * x + yy * y + y0 ;