3 writes to _stylusPoints
PresentationCore (3)
System\Windows\Ink\Stroke.cs (3)
71
_stylusPoints
= stylusPoints;
116
clone.
_stylusPoints
= _stylusPoints.Clone();
537
_stylusPoints
= value;
26 references to _stylusPoints
PresentationCore (26)
System\Windows\Ink\Stroke.cs (26)
83
_stylusPoints
.Changed += new EventHandler(StylusPoints_Changed);
84
_stylusPoints
.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);
116
clone._stylusPoints =
_stylusPoints
.Clone();
188
_stylusPoints
.Transform(new System.Windows.Media.MatrixTransform(transformMatrix));
227
if (
_stylusPoints
.Count < 2)
229
return
_stylusPoints
;
234
if (!bezier.ConstructBezierState(
_stylusPoints
,
238
return
_stylusPoints
.Clone();
270
new StylusPointCollection(
_stylusPoints
.Description, bezierPoints.Count);
277
_stylusPoints
[0].GetAdditionalData(),
278
_stylusPoints
[0].PressureFactor);
306
double unbezierLength = GetDistanceBetweenPoints((Point)
_stylusPoints
[0], (Point)
_stylusPoints
[1]);
309
int stylusPointsCount =
_stylusPoints
.Count;
321
StylusPoint prevStylusPoint =
_stylusPoints
[stylusPointsIndex - 1];
326
float pressureDelta =
_stylusPoints
[stylusPointsIndex].PressureFactor - pressureAtPrev;
346
GetDistanceBetweenPoints((Point)
_stylusPoints
[stylusPointsIndex - 1],
347
(Point)
_stylusPoints
[stylusPointsIndex]);
358
_stylusPoints
[stylusPointsCount - 1].GetAdditionalData(),
359
_stylusPoints
[stylusPointsCount - 1].PressureFactor);
514
return
_stylusPoints
;
532
new StylusPointsReplacedEventArgs(value,
_stylusPoints
);
534
_stylusPoints
.Changed -= new EventHandler(StylusPoints_Changed);
535
_stylusPoints
.CountGoingToZero -= new CancelEventHandler(StylusPoints_CountGoingToZero);
539
_stylusPoints
.Changed += new EventHandler(StylusPoints_Changed);
540
_stylusPoints
.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);