4 instantiations of StrokeIntersection
PresentationCore (4)
MS\Internal\Ink\ErasingStroke.cs (1)
247
intersections.Add(new
StrokeIntersection
(segment.BeginFIndex, StrokeFIndices.AfterLast,
MS\Internal\Ink\Lasso.cs (1)
387
StrokeIntersection si = new
StrokeIntersection
();
MS\Internal\Ink\StrokeIntersection.cs (2)
16
private static StrokeIntersection s_empty = new
StrokeIntersection
(AfterLast, AfterLast, BeforeFirst, BeforeFirst);
17
private static StrokeIntersection s_full = new
StrokeIntersection
(BeforeFirst, BeforeFirst, AfterLast, AfterLast);
39 references to StrokeIntersection
PresentationCore (39)
MS\Internal\Ink\ErasingStroke.cs (1)
134
internal bool EraseTest(StrokeNodeIterator iterator, List<
StrokeIntersection
> intersections)
MS\Internal\Ink\Lasso.cs (11)
184
internal
StrokeIntersection
[] HitTest(StrokeNodeIterator iterator)
194
return Array.Empty<
StrokeIntersection
>();
301
StrokeIntersection
[] strokeIntersections = new
StrokeIntersection
[1];
302
strokeIntersections[0] =
StrokeIntersection
.Full;
307
return Array.Empty<
StrokeIntersection
>();
316
List<
StrokeIntersection
> strokeIntersectionList = new List<
StrokeIntersection
>();
380
List<LassoCrossing> crossingList, List<
StrokeIntersection
> strokeIntersections)
387
StrokeIntersection
si = new StrokeIntersection();
446
StrokeIntersection
previousIntersection = strokeIntersections[strokeIntersections.Count - 1];
MS\Internal\Ink\StrokeIntersection.cs (10)
16
private static
StrokeIntersection
s_empty = new StrokeIntersection(AfterLast, AfterLast, BeforeFirst, BeforeFirst);
17
private static
StrokeIntersection
s_full = new StrokeIntersection(BeforeFirst, BeforeFirst, AfterLast, AfterLast);
110
return ((
StrokeIntersection
)obj == this);
129
public static bool operator ==(
StrokeIntersection
left,
StrokeIntersection
right)
140
public static bool operator !=(
StrokeIntersection
left,
StrokeIntersection
right)
152
internal static
StrokeIntersection
Full { get { return s_full; } }
183
internal static StrokeFIndices[] GetInSegments(
StrokeIntersection
[] intersections)
215
internal static StrokeFIndices[] GetHitSegments(
StrokeIntersection
[] intersections)
System\Windows\Ink\IncrementalHitTester.cs (4)
530
List<
StrokeIntersection
> eraseAt = new List<
StrokeIntersection
>();
673
internal StrokeHitEventArgs(Stroke stroke,
StrokeIntersection
[] hitFragments)
693
private
StrokeIntersection
[] _hitFragments;
System\Windows\Ink\Stroke2.cs (11)
568
internal
StrokeIntersection
[] EraseTest(IEnumerable<Point> path, StylusShape shape)
574
return Array.Empty<
StrokeIntersection
>();
578
List<
StrokeIntersection
> intersections = new List<
StrokeIntersection
>();
587
internal
StrokeIntersection
[] HitTest(Lasso lasso)
593
return Array.Empty<
StrokeIntersection
>();
600
return Array.Empty<
StrokeIntersection
>();
611
internal StrokeCollection Erase(
StrokeIntersection
[] cutAt)
626
StrokeFIndices[] hitSegments =
StrokeIntersection
.GetHitSegments(cutAt);
635
internal StrokeCollection Clip(
StrokeIntersection
[] cutAt)
647
StrokeFIndices[] inSegments =
StrokeIntersection
.GetInSegments(cutAt);
System\Windows\Ink\StrokeCollection2.cs (2)
350
List<
StrokeIntersection
> intersections = new List<
StrokeIntersection
>();