2 writes to _points
PresentationFramework (2)
System\Windows\Controls\PopupControlService.cs (2)
1367
_points
= points.ToArray();
1537
_points
= points.ToArray();
22 references to _points
PresentationFramework (22)
System\Windows\Controls\PopupControlService.cs (22)
1545
for (int i=0, N=
_points
.Length; i<N; ++i)
1550
if (
_points
[i].X ==
_points
[next].X)
1552
_points
[i].Direction = (
_points
[i].Y >=
_points
[next].Y) ? Direction.Up : Direction.Down;
1554
else if (
_points
[i].Y ==
_points
[next].Y)
1556
_points
[i].Direction = (
_points
[i].X >=
_points
[next].X) ? Direction.Left : Direction.Right;
1560
_points
[i].Direction = Direction.Skew;
1655
for (int i = 0, N =
_points
.Length; i < N; ++i)
1657
switch (
_points
[i].Direction)
1660
if (y <
_points
[i].Y) return false;
1663
if (y >=
_points
[i].Y) return false;
1666
if (x >=
_points
[i].X) return false;
1669
if (x <
_points
[i].X) return false;
1675
for (int i = 0, N =
_points
.Length; i < N; ++i)
1677
switch (
_points
[i].Direction)
1684
if (Cross(
_points
[i],
_points
[next], p) > 0)