Geometry.GetOutlinedPathGeometry 方法

定义

获取 PathGeometry 填充区域的简化轮廓 Geometry

重载

GetOutlinedPathGeometry(Double, ToleranceType)

在指定的公差范围内获取 PathGeometry 填充区域的简化轮廓 Geometry

GetOutlinedPathGeometry()

获取 PathGeometry 填充区域的简化轮廓 Geometry

GetOutlinedPathGeometry(Double, ToleranceType)

在指定的公差范围内获取 PathGeometry 填充区域的简化轮廓 Geometry

public:
 virtual System::Windows::Media::PathGeometry ^ GetOutlinedPathGeometry(double tolerance, System::Windows::Media::ToleranceType type);
[System.Security.SecurityCritical]
public virtual System.Windows.Media.PathGeometry GetOutlinedPathGeometry (double tolerance, System.Windows.Media.ToleranceType type);
public virtual System.Windows.Media.PathGeometry GetOutlinedPathGeometry (double tolerance, System.Windows.Media.ToleranceType type);
[<System.Security.SecurityCritical>]
abstract member GetOutlinedPathGeometry : double * System.Windows.Media.ToleranceType -> System.Windows.Media.PathGeometry
override this.GetOutlinedPathGeometry : double * System.Windows.Media.ToleranceType -> System.Windows.Media.PathGeometry
abstract member GetOutlinedPathGeometry : double * System.Windows.Media.ToleranceType -> System.Windows.Media.PathGeometry
override this.GetOutlinedPathGeometry : double * System.Windows.Media.ToleranceType -> System.Windows.Media.PathGeometry
Public Overridable Function GetOutlinedPathGeometry (tolerance As Double, type As ToleranceType) As PathGeometry

参数

tolerance
Double

几何图形的多边形近似中两点间距离的上限。 值越小,生成的结果就越准确,但执行速度会变慢。 如果 tolerance 小于 .000001,则改用 .000001。

type
ToleranceType

ToleranceType 值之一,指定公差因子是绝对值还是相对于几何图形区域的相对值。

返回

PathGeometry

Geometry 填充区域的简化轮廓。

属性

注解

某些 Geometry 方法 (,例如 GetOutlinedPathGeometry) 生成或使用几何图形的多边形近似值。 容差因子指定此多边形近似中点之间的最大距离。 较小的容差值会产生更好的近似值,但需要比具有较大容差因子的近似值更多的处理。

适用于

GetOutlinedPathGeometry()

获取 PathGeometry 填充区域的简化轮廓 Geometry

public:
 System::Windows::Media::PathGeometry ^ GetOutlinedPathGeometry();
public System.Windows.Media.PathGeometry GetOutlinedPathGeometry ();
member this.GetOutlinedPathGeometry : unit -> System.Windows.Media.PathGeometry
Public Function GetOutlinedPathGeometry () As PathGeometry

返回

PathGeometry

Geometry 填充区域的简化轮廓。

注解

此方法使用属性在处理几何图形时) 描述 StandardFlatteningTolerance 的默认容差因子 (。 若要指定自己的容差因子,请使用 GetOutlinedPathGeometry 该方法。

某些 Geometry 方法 (,例如 GetOutlinedPathGeometry) 生成或使用几何图形的多边形近似值。 容差因子指定此多边形近似中点之间的最大距离。 较小的容差值会产生更好的近似值,但需要比具有较大容差因子的近似值更多的处理。

适用于