5 writes to point2
System.Data (5)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (5)
1077this.point2 = point2; 1195this.point2 = Point.Add(this.point2, new Vector(-extendedLength, 0)); 1200this.point2 = Point.Add(this.point2, new Vector(extendedLength, 0)); 1208this.point2 = Point.Add(this.point2, new Vector(0, -extendedLength)); 1213this.point2 = Point.Add(this.point2, new Vector(0, extendedLength));
21 references to point2
System.Data (21)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (21)
1078this.orientation = (this.point1.X.IsEqualTo(this.point2.X) ? Orientation.Vertical : Orientation.Horizontal); 1093return this.point2; 1147(p.X.IsNoLessThan(Math.Min(this.point1.X, this.point2.X)) && p.X.IsNoGreaterThan(Math.Max(this.point1.X, this.point2.X))) : 1148(p.Y.IsNoLessThan(Math.Min(this.point1.Y, this.point2.Y)) && p.Y.IsNoGreaterThan(Math.Max(this.point1.Y, this.point2.Y))); 1158return (this.point1.IsEqualTo(segment.A) && this.point2.IsEqualTo(segment.B) && Orientation == segment.Orientation); 1169return this.IsPointOnSegment(segment.point1) || this.IsPointOnSegment(segment.point2) || segment.IsPointOnSegment(this.point1) || segment.IsPointOnSegment(this.point2); 1176if (!p.IsEqualTo(this.point1) && !p.IsEqualTo(this.point2)) 1183double k2 = ((this.orientation == Orientation.Horizontal) ? this.point2.X : this.point2.Y); 1192if (this.point1.X > this.point2.X) 1195this.point2 = Point.Add(this.point2, new Vector(-extendedLength, 0)); 1200this.point2 = Point.Add(this.point2, new Vector(extendedLength, 0)); 1205if (this.point1.Y > this.point2.Y) 1208this.point2 = Point.Add(this.point2, new Vector(0, -extendedLength)); 1213this.point2 = Point.Add(this.point2, new Vector(0, extendedLength)); 1225return this.point1.GetHashCode() ^ this.point2.GetHashCode() ^ Orientation.GetHashCode(); 1260double k2 = (this.orientation == Orientation.Horizontal) ? this.point2.X : this.point2.Y;