CGAffineTransform.Scale Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Scale(nfloat, nfloat) |
Modifique o affine para dimensionar pelas magnitudes especificadas. |
Scale(CGAffineTransform, nfloat, nfloat) |
Dimensiona o affine pelas magnitudes especificadas e retorna o resultado. |
Scale(nfloat, nfloat, MatrixOrder) |
Scale(nfloat, nfloat)
Modifique o affine para dimensionar pelas magnitudes especificadas.
[Foundation.Advice("By default, the new operation is applied after the old operation: t' = t * [ sx 0 0 sy 0 0 ].\nTo have the same behavior as the native Swift API, pass 'MatrixOrder.Prepend' to 'Scale (nfloat, nfloat, MatrixOrder)'.")]
public void Scale (nfloat sx, nfloat sy);
public void Scale (nfloat sx, nfloat sy);
member this.Scale : nfloat * nfloat -> unit
Parâmetros
- sx
- nfloat
O fator de escala X.
- sy
- nfloat
O fator de escala Y.
- Atributos
Comentários
Esse método modifica o affine atual com os fatores de dimensionamento solicitados.
Esse método não é equivalente ao método CGAffineTransformScale do CoreGraphics nativo (nesse caso, use M:CoreGraphics.CGAffineTransform.Scale(CoreGraphics.CGAffineTransform,System.Single,System.Single) em vez disso).
Aplica-se a
Scale(CGAffineTransform, nfloat, nfloat)
Dimensiona o affine pelas magnitudes especificadas e retorna o resultado.
public static CoreGraphics.CGAffineTransform Scale (CoreGraphics.CGAffineTransform transform, nfloat sx, nfloat sy);
static member Scale : CoreGraphics.CGAffineTransform * nfloat * nfloat -> CoreGraphics.CGAffineTransform
Parâmetros
- transform
- CGAffineTransform
O affine a ser dimensionado.
- sx
- nfloat
O fator de escala X.
- sy
- nfloat
O fator de escala Y.
Retornos
O affine dimensionado.
Comentários
Esse método é equivalente ao método CGAffineTransformScale do CoreGraphics nativo.
Aplica-se a
Scale(nfloat, nfloat, MatrixOrder)
public void Scale (nfloat sx, nfloat sy, CoreGraphics.MatrixOrder order);
member this.Scale : nfloat * nfloat * CoreGraphics.MatrixOrder -> unit
Parâmetros
- sx
- nfloat
- sy
- nfloat
- order
- MatrixOrder