2 writes to _points
PresentationFramework (2)
System\Windows\Controls\PopupControlService.cs (2)
1360
_points
= points.ToArray();
1530
_points
= points.ToArray();
22 references to _points
PresentationFramework (22)
System\Windows\Controls\PopupControlService.cs (22)
1538
for (int i=0, N=
_points
.Length; i<N; ++i)
1543
if (
_points
[i].X ==
_points
[next].X)
1545
_points
[i].Direction = (
_points
[i].Y >=
_points
[next].Y) ? Direction.Up : Direction.Down;
1547
else if (
_points
[i].Y ==
_points
[next].Y)
1549
_points
[i].Direction = (
_points
[i].X >=
_points
[next].X) ? Direction.Left : Direction.Right;
1553
_points
[i].Direction = Direction.Skew;
1648
for (int i = 0, N =
_points
.Length; i < N; ++i)
1650
switch (
_points
[i].Direction)
1653
if (y <
_points
[i].Y) return false;
1656
if (y >=
_points
[i].Y) return false;
1659
if (x >=
_points
[i].X) return false;
1662
if (x <
_points
[i].X) return false;
1668
for (int i = 0, N =
_points
.Length; i < N; ++i)
1670
switch (
_points
[i].Direction)
1677
if (Cross(
_points
[i],
_points
[next], p) > 0)