PathMeasure.GetSegment(Single, Single, Path, Boolean) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
시작 및 중지 거리가 지정된 경우 중간 세그먼트를 dst로 반환합니다.
[Android.Runtime.Register("getSegment", "(FFLandroid/graphics/Path;Z)Z", "GetGetSegment_FFLandroid_graphics_Path_ZHandler")]
public virtual bool GetSegment (float startD, float stopD, Android.Graphics.Path? dst, bool startWithMoveTo);
[<Android.Runtime.Register("getSegment", "(FFLandroid/graphics/Path;Z)Z", "GetGetSegment_FFLandroid_graphics_Path_ZHandler")>]
abstract member GetSegment : single * single * Android.Graphics.Path * bool -> bool
override this.GetSegment : single * single * Android.Graphics.Path * bool -> bool
매개 변수
- startD
- Single
- stopD
- Single
- dst
- Path
- startWithMoveTo
- Boolean
반환
- 특성
설명
시작 및 중지 거리가 지정된 경우 중간 세그먼트를 dst로 반환합니다. 세그먼트 길이가 0이면 false를 반환하고 그렇지 않으면 true를 반환합니다. startD 및 stopD는 법적 값(0..getLength())에 고정됩니다. startD >= stopD이면 false를 반환하고 dst를 그대로 둡니다. startWithMoveTo가 true이면 moveTo로 세그먼트를 시작합니다.
android.os.Build.VERSION_CODES#KITKAT
이전 릴리스에서는 결과 경로가 하드웨어 가속 캔버스에 표시되지 않을 수 있습니다. 간단한 해결 방법은 다음과 같이 dst.rLineTo(0, 0)
이 경로에 단일 작업을 추가하는 것입니다.
에 대한 android.graphics.PathMeasure.getSegment(float, float, android.graphics.Path, boolean)
Java 설명서
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.