74 references to ToleranceType
PresentationCore (69)
System\Windows\Media\BoundsDrawingContextWalker.cs (4)
81
ToleranceType
.Absolute
119
ToleranceType
.Absolute
167
ToleranceType
.Absolute
217
ToleranceType
.Absolute
System\Windows\Media\CombinedGeometry.cs (3)
118
internal override Rect GetBoundsInternal(Pen pen, Matrix matrix, double tolerance,
ToleranceType
type)
133
internal override bool ContainsInternal(Pen pen, Point hitPoint, double tolerance,
ToleranceType
type)
205
public override double GetArea(double tolerance,
ToleranceType
type)
System\Windows\Media\EllipseGeometry.cs (5)
111
ToleranceType
.Absolute);
122
internal override Rect GetBoundsInternal(Pen pen, Matrix matrix, double tolerance,
ToleranceType
type)
140
Matrix geometryMatrix, double tolerance,
ToleranceType
type)
187
internal override bool ContainsInternal(Pen pen, Point hitPoint, double tolerance,
ToleranceType
type)
232
public override double GetArea(double tolerance,
ToleranceType
type)
System\Windows\Media\Geometry.cs (36)
59
ToleranceType
.Absolute,
84
public virtual Rect GetRenderBounds(Pen pen, double tolerance,
ToleranceType
type)
101
return GetBoundsInternal(pen, matrix, StandardFlatteningTolerance,
ToleranceType
.Absolute);
123
internal virtual Rect GetBoundsInternal(Pen pen, Matrix matrix, double tolerance,
ToleranceType
type)
147
return GetBoundsInternal(pen, matrix, StandardFlatteningTolerance,
ToleranceType
.Absolute);
160
ToleranceType
type,
198
type ==
ToleranceType
.Relative,
263
public virtual double GetArea(double tolerance,
ToleranceType
type)
294
type ==
ToleranceType
.Relative,
318
return GetArea(StandardFlatteningTolerance,
ToleranceType
.Absolute);
340
public bool FillContains(Point hitPoint, double tolerance,
ToleranceType
type)
351
return ContainsInternal(null, hitPoint, StandardFlatteningTolerance,
ToleranceType
.Absolute);
361
public bool StrokeContains(Pen pen, Point hitPoint, double tolerance,
ToleranceType
type)
378
internal virtual bool ContainsInternal(Pen pen, Point hitPoint, double tolerance,
ToleranceType
type)
416
type ==
ToleranceType
.Relative,
440
internal unsafe bool ContainsInternal(Pen pen, Point hitPoint, double tolerance,
ToleranceType
type,
463
type ==
ToleranceType
.Relative,
489
return StrokeContains(pen, hitPoint, StandardFlatteningTolerance,
ToleranceType
.Absolute);
498
public bool FillContains(Geometry geometry, double tolerance,
ToleranceType
type)
511
return FillContains(geometry, StandardFlatteningTolerance,
ToleranceType
.Absolute);
520
public virtual IntersectionDetail FillContainsWithDetail(Geometry geometry, double tolerance,
ToleranceType
type)
539
return FillContainsWithDetail(geometry, StandardFlatteningTolerance,
ToleranceType
.Absolute);
549
public IntersectionDetail StrokeContainsWithDetail(Pen pen, Geometry geometry, double tolerance,
ToleranceType
type)
568
return StrokeContainsWithDetail(pen, geometry, StandardFlatteningTolerance,
ToleranceType
.Absolute);
581
public virtual PathGeometry GetFlattenedPathGeometry(double tolerance,
ToleranceType
type)
615
type ==
ToleranceType
.Relative,
644
return GetFlattenedPathGeometry(StandardFlatteningTolerance,
ToleranceType
.Absolute);
658
public virtual PathGeometry GetWidenedPathGeometry(Pen pen, double tolerance,
ToleranceType
type)
701
type ==
ToleranceType
.Relative,
716
type ==
ToleranceType
.Relative,
748
return GetWidenedPathGeometry(pen, StandardFlatteningTolerance,
ToleranceType
.Absolute);
770
ToleranceType
type)
794
ToleranceType
.Absolute);
807
public virtual PathGeometry GetOutlinedPathGeometry(double tolerance,
ToleranceType
type)
840
type ==
ToleranceType
.Relative,
868
return GetOutlinedPathGeometry(StandardFlatteningTolerance,
ToleranceType
.Absolute);
System\Windows\Media\GlyphRun.cs (1)
1592
accumulatedGeometry.Children.Add(glyphGeometry.GetOutlinedPathGeometry(RelativeFlatteningTolerance,
ToleranceType
.Relative));
System\Windows\Media\LineGeometry.cs (4)
72
internal override Rect GetBoundsInternal(Pen pen, Matrix worldMatrix, double tolerance,
ToleranceType
type)
89
Matrix geometryMatrix, double tolerance,
ToleranceType
type)
121
internal override bool ContainsInternal(Pen pen, Point hitPoint, double tolerance,
ToleranceType
type)
165
public override double GetArea(double tolerance,
ToleranceType
type)
System\Windows\Media\PathFigure.cs (2)
55
public PathFigure GetFlattenedPathFigure(double tolerance,
ToleranceType
type)
85
return GetFlattenedPathFigure(Geometry.StandardFlatteningTolerance,
ToleranceType
.Absolute);
System\Windows\Media\PathGeometry.cs (8)
600
ToleranceType
type)
633
type ==
ToleranceType
.Relative,
694
ToleranceType
.Absolute,
713
ToleranceType
type,
745
ToleranceType
type,
779
type ==
ToleranceType
.Relative,
811
ToleranceType
type)
838
type ==
ToleranceType
.Relative,
System\Windows\Media\RectangleGeometry.cs (5)
117
ToleranceType
.Absolute);
154
internal override Rect GetBoundsInternal(Pen pen, Matrix worldMatrix, double tolerance,
ToleranceType
type)
172
Matrix geometryMatrix, double tolerance,
ToleranceType
type)
230
internal override bool ContainsInternal(Pen pen, Point hitPoint, double tolerance,
ToleranceType
type)
269
public override double GetArea(double tolerance,
ToleranceType
type)
System\Windows\Media\StreamGeometry.cs (1)
171
ToleranceType
.Absolute,
PresentationFramework (2)
System\windows\Documents\CaretElement.cs (2)
486
geometry = Geometry.Combine(geometry, addedGeometry, GeometryCombineMode.Union, null, CaretElement.c_geometryCombineTolerance,
ToleranceType
.Absolute);
496
geometry = Geometry.Combine(geometry, viewportGeometry, GeometryCombineMode.Intersect, null, CaretElement.c_geometryCombineTolerance,
ToleranceType
.Absolute);
ReachFramework (3)
AlphaFlattener\DrawingContext.cs (1)
115
geometry = geometry.GetWidenedPathGeometry(pen.GetPen(true), 0.0001,
ToleranceType
.Relative);
AlphaFlattener\Primitive.cs (1)
1057
_widenGeometry = _geometry.GetWidenedPathGeometry(p, MyFlatteningTolerance / scale,
ToleranceType
.Absolute);
AlphaFlattener\Utility.cs (1)
977
Tolerance_960_dpi,
ToleranceType
.Absolute);