2 writes to _points
PresentationFramework (2)
System\Windows\Controls\PopupControlService.cs (2)
1363
_points
= points.ToArray();
1533
_points
= points.ToArray();
22 references to _points
PresentationFramework (22)
System\Windows\Controls\PopupControlService.cs (22)
1541
for (int i=0, N=
_points
.Length; i<N; ++i)
1546
if (
_points
[i].X ==
_points
[next].X)
1548
_points
[i].Direction = (
_points
[i].Y >=
_points
[next].Y) ? Direction.Up : Direction.Down;
1550
else if (
_points
[i].Y ==
_points
[next].Y)
1552
_points
[i].Direction = (
_points
[i].X >=
_points
[next].X) ? Direction.Left : Direction.Right;
1556
_points
[i].Direction = Direction.Skew;
1651
for (int i = 0, N =
_points
.Length; i < N; ++i)
1653
switch (
_points
[i].Direction)
1656
if (y <
_points
[i].Y) return false;
1659
if (y >=
_points
[i].Y) return false;
1662
if (x >=
_points
[i].X) return false;
1665
if (x <
_points
[i].X) return false;
1671
for (int i = 0, N =
_points
.Length; i < N; ++i)
1673
switch (
_points
[i].Direction)
1680
if (Cross(
_points
[i],
_points
[next], p) > 0)