4 instantiations of StrokeIntersection
PresentationCore (4)
MS\Internal\Ink\ErasingStroke.cs (1)
246
intersections.Add(new
StrokeIntersection
(segment.BeginFIndex, StrokeFIndices.AfterLast,
MS\Internal\Ink\Lasso.cs (1)
386
StrokeIntersection si = new
StrokeIntersection
();
MS\Internal\Ink\StrokeIntersection.cs (2)
15
private static StrokeIntersection s_empty = new
StrokeIntersection
(AfterLast, AfterLast, BeforeFirst, BeforeFirst);
16
private static StrokeIntersection s_full = new
StrokeIntersection
(BeforeFirst, BeforeFirst, AfterLast, AfterLast);
39 references to StrokeIntersection
PresentationCore (39)
MS\Internal\Ink\ErasingStroke.cs (1)
133
internal bool EraseTest(StrokeNodeIterator iterator, List<
StrokeIntersection
> intersections)
MS\Internal\Ink\Lasso.cs (11)
183
internal
StrokeIntersection
[] HitTest(StrokeNodeIterator iterator)
193
return Array.Empty<
StrokeIntersection
>();
300
StrokeIntersection
[] strokeIntersections = new
StrokeIntersection
[1];
301
strokeIntersections[0] =
StrokeIntersection
.Full;
306
return Array.Empty<
StrokeIntersection
>();
315
List<
StrokeIntersection
> strokeIntersectionList = new List<
StrokeIntersection
>();
379
List<LassoCrossing> crossingList, List<
StrokeIntersection
> strokeIntersections)
386
StrokeIntersection
si = new StrokeIntersection();
445
StrokeIntersection
previousIntersection = strokeIntersections[strokeIntersections.Count - 1];
MS\Internal\Ink\StrokeIntersection.cs (10)
15
private static
StrokeIntersection
s_empty = new StrokeIntersection(AfterLast, AfterLast, BeforeFirst, BeforeFirst);
16
private static
StrokeIntersection
s_full = new StrokeIntersection(BeforeFirst, BeforeFirst, AfterLast, AfterLast);
109
return ((
StrokeIntersection
)obj == this);
128
public static bool operator ==(
StrokeIntersection
left,
StrokeIntersection
right)
139
public static bool operator !=(
StrokeIntersection
left,
StrokeIntersection
right)
151
internal static
StrokeIntersection
Full { get { return s_full; } }
182
internal static StrokeFIndices[] GetInSegments(
StrokeIntersection
[] intersections)
214
internal static StrokeFIndices[] GetHitSegments(
StrokeIntersection
[] intersections)
System\Windows\Ink\IncrementalHitTester.cs (4)
526
List<
StrokeIntersection
> eraseAt = new List<
StrokeIntersection
>();
669
internal StrokeHitEventArgs(Stroke stroke,
StrokeIntersection
[] hitFragments)
689
private
StrokeIntersection
[] _hitFragments;
System\Windows\Ink\Stroke2.cs (11)
561
internal
StrokeIntersection
[] EraseTest(IEnumerable<Point> path, StylusShape shape)
567
return Array.Empty<
StrokeIntersection
>();
571
List<
StrokeIntersection
> intersections = new List<
StrokeIntersection
>();
580
internal
StrokeIntersection
[] HitTest(Lasso lasso)
586
return Array.Empty<
StrokeIntersection
>();
593
return Array.Empty<
StrokeIntersection
>();
604
internal StrokeCollection Erase(
StrokeIntersection
[] cutAt)
619
StrokeFIndices[] hitSegments =
StrokeIntersection
.GetHitSegments(cutAt);
628
internal StrokeCollection Clip(
StrokeIntersection
[] cutAt)
640
StrokeFIndices[] inSegments =
StrokeIntersection
.GetInSegments(cutAt);
System\Windows\Ink\StrokeCollection2.cs (2)
334
List<
StrokeIntersection
> intersections = new List<
StrokeIntersection
>();