5 writes to point1
System.Data (5)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (5)
1076this.point1 = point1; 1194this.point1 = Point.Add(this.point1, new Vector(extendedLength, 0)); 1199this.point1 = Point.Add(this.point1, new Vector(-extendedLength, 0)); 1207this.point1 = Point.Add(this.point1, new Vector(0, extendedLength)); 1212this.point1 = Point.Add(this.point1, new Vector(0, -extendedLength));
25 references to point1
System.Data (25)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (25)
1078this.orientation = (this.point1.X.IsEqualTo(this.point2.X) ? Orientation.Vertical : Orientation.Horizontal); 1085return this.point1; 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)) 1182double k1 = ((this.orientation == Orientation.Horizontal) ? this.point1.X : this.point1.Y); 1192if (this.point1.X > this.point2.X) 1194this.point1 = Point.Add(this.point1, new Vector(extendedLength, 0)); 1199this.point1 = Point.Add(this.point1, new Vector(-extendedLength, 0)); 1205if (this.point1.Y > this.point2.Y) 1207this.point1 = Point.Add(this.point1, new Vector(0, extendedLength)); 1212this.point1 = Point.Add(this.point1, new Vector(0, -extendedLength)); 1225return this.point1.GetHashCode() ^ this.point2.GetHashCode() ^ Orientation.GetHashCode(); 1253if ((this.orientation == Orientation.Horizontal && !p.Y.IsEqualTo(this.point1.Y)) || (this.orientation == Orientation.Vertical && !p.X.IsEqualTo(this.point1.X))) 1259double k1 = (this.orientation == Orientation.Horizontal) ? this.point1.X : this.point1.Y; 1283return (this.orientation == Orientation.Horizontal) ? p.Y.IsEqualTo(this.point1.Y) : p.X.IsEqualTo(this.point1.X);