2 writes to _points
PresentationFramework (2)
System\Windows\Controls\PopupControlService.cs (2)
1370
_points
= points.ToArray();
1540
_points
= points.ToArray();
22 references to _points
PresentationFramework (22)
System\Windows\Controls\PopupControlService.cs (22)
1548
for (int i=0, N=
_points
.Length; i<N; ++i)
1553
if (
_points
[i].X ==
_points
[next].X)
1555
_points
[i].Direction = (
_points
[i].Y >=
_points
[next].Y) ? Direction.Up : Direction.Down;
1557
else if (
_points
[i].Y ==
_points
[next].Y)
1559
_points
[i].Direction = (
_points
[i].X >=
_points
[next].X) ? Direction.Left : Direction.Right;
1563
_points
[i].Direction = Direction.Skew;
1658
for (int i = 0, N =
_points
.Length; i < N; ++i)
1660
switch (
_points
[i].Direction)
1663
if (y <
_points
[i].Y) return false;
1666
if (y >=
_points
[i].Y) return false;
1669
if (x >=
_points
[i].X) return false;
1672
if (x <
_points
[i].X) return false;
1678
for (int i = 0, N =
_points
.Length; i < N; ++i)
1680
switch (
_points
[i].Direction)
1687
if (Cross(
_points
[i],
_points
[next], p) > 0)