다음을 통해 공유


CGAffineTransform.Translate 메서드

정의

오버로드

Translate(nfloat, nfloat, MatrixOrder)
Translate(nfloat, nfloat)

제공된 X 매개 변수로 모든 X 값을 수정하고 제공된 Y 매개 변수로 모든 Y 값을 수정하여 아핀 변환을 변환합니다.

Translate(CGAffineTransform, nfloat, nfloat)

제공된 X 매개 변수로 모든 X 값을 수정하고 제공된 Y 매개 변수로 모든 Y 값을 수정하여 아핀 변환을 변환합니다.

Translate(nfloat, nfloat, MatrixOrder)

public void Translate (nfloat tx, nfloat ty, CoreGraphics.MatrixOrder order);
member this.Translate : nfloat * nfloat * CoreGraphics.MatrixOrder -> unit

매개 변수

tx
nfloat
ty
nfloat
order
MatrixOrder

적용 대상

Translate(nfloat, nfloat)

제공된 X 매개 변수로 모든 X 값을 수정하고 제공된 Y 매개 변수로 모든 Y 값을 수정하여 아핀 변환을 변환합니다.

[Foundation.Advice("By default, the new operation is applied after the old operation: t' = t * [ 1 0 0 1 tx ty ].\nTo have the same behavior as the native Swift API, pass 'MatrixOrder.Prepend' to 'Translate (nfloat, nfloat, MatrixOrder)'.")]
public void Translate (nfloat tx, nfloat ty);
public void Translate (nfloat tx, nfloat ty);
member this.Translate : nfloat * nfloat -> unit

매개 변수

tx
nfloat

변환을 이동할 X 값입니다.

ty
nfloat

변환을 이동할 Y 값입니다.

특성

설명

아핀을 제자리에 수정합니다.

이 메서드는 네이티브 CoreGraphics의 CGAffineTransformTranslate 메서드와 동일하지 않습니다(이 경우 M:CoreGraphics.CGAffineTransform.Translate(CoreGraphics.CGAffineTransform,System.Single,System.Single)) .

적용 대상

Translate(CGAffineTransform, nfloat, nfloat)

제공된 X 매개 변수로 모든 X 값을 수정하고 제공된 Y 매개 변수로 모든 Y 값을 수정하여 아핀 변환을 변환합니다.

public static CoreGraphics.CGAffineTransform Translate (CoreGraphics.CGAffineTransform transform, nfloat tx, nfloat ty);
static member Translate : CoreGraphics.CGAffineTransform * nfloat * nfloat -> CoreGraphics.CGAffineTransform

매개 변수

transform
CGAffineTransform

번역할 아핀입니다.

tx
nfloat

변환을 이동할 X 값입니다.

ty
nfloat

변환을 이동할 Y 값입니다.

반환

번역된 아핀 변환입니다.

설명

이 메서드는 네이티브 CoreGraphics의 CGAffineTransformTranslate 메서드와 동일합니다.

적용 대상