3 writes to _stylusPoints
PresentationCore (3)
System\Windows\Ink\Stroke.cs (3)
56
_stylusPoints
= stylusPoints;
101
clone.
_stylusPoints
= _stylusPoints.Clone();
522
_stylusPoints
= value;
26 references to _stylusPoints
PresentationCore (26)
System\Windows\Ink\Stroke.cs (26)
68
_stylusPoints
.Changed += new EventHandler(StylusPoints_Changed);
69
_stylusPoints
.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);
101
clone._stylusPoints =
_stylusPoints
.Clone();
173
_stylusPoints
.Transform(new System.Windows.Media.MatrixTransform(transformMatrix));
212
if (
_stylusPoints
.Count < 2)
214
return
_stylusPoints
;
219
if (!bezier.ConstructBezierState(
_stylusPoints
,
223
return
_stylusPoints
.Clone();
255
new StylusPointCollection(
_stylusPoints
.Description, bezierPoints.Count);
262
_stylusPoints
[0].GetAdditionalData(),
263
_stylusPoints
[0].PressureFactor);
291
double unbezierLength = GetDistanceBetweenPoints((Point)
_stylusPoints
[0], (Point)
_stylusPoints
[1]);
294
int stylusPointsCount =
_stylusPoints
.Count;
306
StylusPoint prevStylusPoint =
_stylusPoints
[stylusPointsIndex - 1];
311
float pressureDelta =
_stylusPoints
[stylusPointsIndex].PressureFactor - pressureAtPrev;
331
GetDistanceBetweenPoints((Point)
_stylusPoints
[stylusPointsIndex - 1],
332
(Point)
_stylusPoints
[stylusPointsIndex]);
343
_stylusPoints
[stylusPointsCount - 1].GetAdditionalData(),
344
_stylusPoints
[stylusPointsCount - 1].PressureFactor);
499
return
_stylusPoints
;
517
new StylusPointsReplacedEventArgs(value,
_stylusPoints
);
519
_stylusPoints
.Changed -= new EventHandler(StylusPoints_Changed);
520
_stylusPoints
.CountGoingToZero -= new CancelEventHandler(StylusPoints_CountGoingToZero);
524
_stylusPoints
.Changed += new EventHandler(StylusPoints_Changed);
525
_stylusPoints
.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);