Geometry.GetFlattenedPathGeometry 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
PathGeometry 개체의 다각형 근사인 Geometry를 가져옵니다.
오버로드
GetFlattenedPathGeometry() |
PathGeometry 개체의 다각형 근사인 Geometry를 가져옵니다. |
GetFlattenedPathGeometry(Double, ToleranceType) |
지정한 허용 범위 내에서 PathGeometry 개체의 다각형 근사인 Geometry를 가져옵니다. |
GetFlattenedPathGeometry()
PathGeometry 개체의 다각형 근사인 Geometry를 가져옵니다.
public:
System::Windows::Media::PathGeometry ^ GetFlattenedPathGeometry();
public System.Windows.Media.PathGeometry GetFlattenedPathGeometry ();
member this.GetFlattenedPathGeometry : unit -> System.Windows.Media.PathGeometry
Public Function GetFlattenedPathGeometry () As PathGeometry
반환
Geometry의 다각형 근사입니다.
설명
이 메서드는 기하 도형을 처리할 때 기본 허용 오차 계수(속성에서 StandardFlatteningTolerance 설명)를 사용합니다. 고유한 허용 오차 요소를 지정하려면 메서드를 GetFlattenedPathGeometry 사용합니다.
일부 Geometry 메서드 (같은 GetFlattenedPathGeometry) 생성 또는 기 하 도형의 다각형 근사값을 사용 합니다. 허용 계수가이 다각형 근사 점 간의 최대 거리를 지정합니다. 허용 오차 값이 작을수록 근사값이 더 낫지만 허용 오차가 큰 근사값보다 더 많은 처리가 필요합니다.
적용 대상
GetFlattenedPathGeometry(Double, ToleranceType)
지정한 허용 범위 내에서 PathGeometry 개체의 다각형 근사인 Geometry를 가져옵니다.
public:
virtual System::Windows::Media::PathGeometry ^ GetFlattenedPathGeometry(double tolerance, System::Windows::Media::ToleranceType type);
[System.Security.SecurityCritical]
public virtual System.Windows.Media.PathGeometry GetFlattenedPathGeometry (double tolerance, System.Windows.Media.ToleranceType type);
public virtual System.Windows.Media.PathGeometry GetFlattenedPathGeometry (double tolerance, System.Windows.Media.ToleranceType type);
[<System.Security.SecurityCritical>]
abstract member GetFlattenedPathGeometry : double * System.Windows.Media.ToleranceType -> System.Windows.Media.PathGeometry
override this.GetFlattenedPathGeometry : double * System.Windows.Media.ToleranceType -> System.Windows.Media.PathGeometry
abstract member GetFlattenedPathGeometry : double * System.Windows.Media.ToleranceType -> System.Windows.Media.PathGeometry
override this.GetFlattenedPathGeometry : double * System.Windows.Media.ToleranceType -> System.Windows.Media.PathGeometry
Public Overridable Function GetFlattenedPathGeometry (tolerance As Double, type As ToleranceType) As PathGeometry
매개 변수
- tolerance
- Double
기하 도형의 다각형 근사에서 각 점 사이의 거리에 허용되는 최대 범위입니다. 값이 작을수록 결과가 정확해지지만 실행 속도는 느려집니다. tolerance
가 .000001보다 작은 경우 .000001이 대신 사용됩니다.
- type
- ToleranceType
허용 계수가 절대 값인지 또는 이 기하 도형 영역에 대한 상대 값인지를 지정하는 ToleranceType 값 중 하나입니다.
반환
Geometry의 다각형 근사입니다.
- 특성
설명
일부 Geometry 메서드 (같은 GetFlattenedPathGeometry) 생성 또는 기 하 도형의 다각형 근사값을 사용 합니다. 허용 계수가이 다각형 근사 점 간의 최대 거리를 지정합니다. 허용 오차 값이 작을수록 근사값이 더 낫지만 허용 오차가 큰 근사값보다 더 많은 처리가 필요합니다.