CGAffineTransform.Scale 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Scale(nfloat, nfloat) |
지정된 크기로 크기를 조정하도록 아핀을 수정합니다. |
Scale(CGAffineTransform, nfloat, nfloat) |
지정된 크기로 아핀의 크기를 조정하고 결과를 반환합니다. |
Scale(nfloat, nfloat, MatrixOrder) |
Scale(nfloat, nfloat)
지정된 크기로 크기를 조정하도록 아핀을 수정합니다.
[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
매개 변수
- sx
- nfloat
X 배율 인수입니다.
- sy
- nfloat
Y 배율 인수입니다.
- 특성
설명
이 메서드는 요청된 배율 인수를 사용하여 현재 아핀을 수정합니다.
이 메서드는 네이티브 CoreGraphics의 CGAffineTransformScale 메서드와 동일하지 않습니다(이 경우 M:CoreGraphics.CGAffineTransform.Scale(CoreGraphics.CGAffineTransform,System.Single,System.Single) 대신 사용).
적용 대상
Scale(CGAffineTransform, nfloat, nfloat)
지정된 크기로 아핀의 크기를 조정하고 결과를 반환합니다.
public static CoreGraphics.CGAffineTransform Scale (CoreGraphics.CGAffineTransform transform, nfloat sx, nfloat sy);
static member Scale : CoreGraphics.CGAffineTransform * nfloat * nfloat -> CoreGraphics.CGAffineTransform
매개 변수
- transform
- CGAffineTransform
스케일링할 아핀입니다.
- sx
- nfloat
X 배율 인수입니다.
- sy
- nfloat
Y 배율 인수입니다.
반환
스케일링된 아핀입니다.
설명
이 메서드는 네이티브 CoreGraphics의 CGAffineTransformScale 메서드와 동일합니다.
적용 대상
Scale(nfloat, nfloat, MatrixOrder)
public void Scale (nfloat sx, nfloat sy, CoreGraphics.MatrixOrder order);
member this.Scale : nfloat * nfloat * CoreGraphics.MatrixOrder -> unit
매개 변수
- sx
- nfloat
- sy
- nfloat
- order
- MatrixOrder