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