3 writes to _stylusPoints
PresentationCore (3)
Core\CSharp\System\Windows\Ink\Stroke.cs (3)
78
_stylusPoints
= stylusPoints;
123
clone.
_stylusPoints
= _stylusPoints.Clone();
551
_stylusPoints
= value;
26 references to _stylusPoints
PresentationCore (26)
Core\CSharp\System\Windows\Ink\Stroke.cs (26)
90
_stylusPoints
.Changed += new EventHandler(StylusPoints_Changed);
91
_stylusPoints
.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);
123
clone._stylusPoints =
_stylusPoints
.Clone();
195
_stylusPoints
.Transform(new System.Windows.Media.MatrixTransform(transformMatrix));
234
if (
_stylusPoints
.Count < 2)
236
return
_stylusPoints
;
241
if (!bezier.ConstructBezierState(
_stylusPoints
,
245
return
_stylusPoints
.Clone();
277
new StylusPointCollection(
_stylusPoints
.Description, bezierPoints.Count);
284
_stylusPoints
[0].GetAdditionalData(),
285
_stylusPoints
[0].PressureFactor);
313
double unbezierLength = GetDistanceBetweenPoints((Point)
_stylusPoints
[0], (Point)
_stylusPoints
[1]);
316
int stylusPointsCount =
_stylusPoints
.Count;
328
StylusPoint prevStylusPoint =
_stylusPoints
[stylusPointsIndex - 1];
333
float pressureDelta =
_stylusPoints
[stylusPointsIndex].PressureFactor - pressureAtPrev;
354
GetDistanceBetweenPoints((Point)
_stylusPoints
[stylusPointsIndex - 1],
355
(Point)
_stylusPoints
[stylusPointsIndex]);
366
_stylusPoints
[stylusPointsCount - 1].GetAdditionalData(),
367
_stylusPoints
[stylusPointsCount - 1].PressureFactor);
525
return
_stylusPoints
;
546
new StylusPointsReplacedEventArgs(value,
_stylusPoints
);
548
_stylusPoints
.Changed -= new EventHandler(StylusPoints_Changed);
549
_stylusPoints
.CountGoingToZero -= new CancelEventHandler(StylusPoints_CountGoingToZero);
553
_stylusPoints
.Changed += new EventHandler(StylusPoints_Changed);
554
_stylusPoints
.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);