5 instantiations of StrokeNode
PresentationCore (5)
Core\CSharp\MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
249return new StrokeNode(_operations, previousIndex + 1, nodeData, lastNodeData, index == _stylusPoints.Count - 1 /*Is this the last node?*/);
Core\CSharp\MS\Internal\Ink\StrokeRenderer.cs (4)
247StrokeNode emptyStrokeNode = new StrokeNode(); 248StrokeNode prevPrevStrokeNode = new StrokeNode(); 249StrokeNode prevStrokeNode = new StrokeNode(); 250StrokeNode strokeNode = new StrokeNode();
25 references to StrokeNode
PresentationCore (25)
Core\CSharp\MS\Internal\Ink\ErasingStroke.cs (7)
64_erasingStrokeNodes = new List<StrokeNode>(points.Length); 76StrokeNode strokeNode = _nodeIterator[i]; 110StrokeNode inkStrokeNode = iterator[i]; 118foreach (StrokeNode erasingStrokeNode in _erasingStrokeNodes) 153StrokeNode inkStrokeNode = iterator[x]; 162foreach (StrokeNode erasingStrokeNode in _erasingStrokeNodes) 330private List<StrokeNode> _erasingStrokeNodes = null;
Core\CSharp\MS\Internal\Ink\Lasso.cs (5)
228StrokeNode strokeNode = iterator[i]; 361private bool SegmentWithinLasso(StrokeNode strokeNode, double fIndex) 553internal StrokeNode StartNode; 554internal StrokeNode EndNode; 561public LassoCrossing(StrokeFIndices newFIndices, StrokeNode strokeNode)
Core\CSharp\MS\Internal\Ink\StrokeNode.cs (3)
421internal void GetPointsAtMiddleSegment( StrokeNode previous, 853internal bool HitTest(StrokeNode hitNode) 871internal StrokeFIndices CutTest(StrokeNode hitNode)
Core\CSharp\MS\Internal\Ink\StrokeNodeEnumerator.cs (2)
209internal StrokeNode this[int index] 222internal StrokeNode this[int index, int previousIndex]
Core\CSharp\MS\Internal\Ink\StrokeRenderer.cs (7)
78StrokeNode strokeNode = iterator[index]; 247StrokeNode emptyStrokeNode = new StrokeNode(); 248StrokeNode prevPrevStrokeNode = new StrokeNode(); 249StrokeNode prevStrokeNode = new StrokeNode(); 250StrokeNode strokeNode = new StrokeNode(); 755StrokeNode strokeNodePrevious, 757StrokeNode strokeNodeCurrent,
Core\CSharp\System\Windows\Ink\Stroke2.cs (1)
46StrokeNode strokeNode = iterator[i];