2 writes to _points
PresentationFramework (2)
System\Windows\Controls\PopupControlService.cs (2)
1366
_points
= points.ToArray();
1536
_points
= points.ToArray();
22 references to _points
PresentationFramework (22)
System\Windows\Controls\PopupControlService.cs (22)
1544
for (int i=0, N=
_points
.Length; i<N; ++i)
1549
if (
_points
[i].X ==
_points
[next].X)
1551
_points
[i].Direction = (
_points
[i].Y >=
_points
[next].Y) ? Direction.Up : Direction.Down;
1553
else if (
_points
[i].Y ==
_points
[next].Y)
1555
_points
[i].Direction = (
_points
[i].X >=
_points
[next].X) ? Direction.Left : Direction.Right;
1559
_points
[i].Direction = Direction.Skew;
1654
for (int i = 0, N =
_points
.Length; i < N; ++i)
1656
switch (
_points
[i].Direction)
1659
if (y <
_points
[i].Y) return false;
1662
if (y >=
_points
[i].Y) return false;
1665
if (x >=
_points
[i].X) return false;
1668
if (x <
_points
[i].X) return false;
1674
for (int i = 0, N =
_points
.Length; i < N; ++i)
1676
switch (
_points
[i].Direction)
1683
if (Cross(
_points
[i],
_points
[next], p) > 0)