3 writes to x
System.Windows.Input.Manipulations (3)
System\Windows\Input\Manipulations\VectorF.cs (3)
26
this.
x
= x;
36
set {
x
= value; }
367
x
/= length;
21 references to x
System.Windows.Input.Manipulations (21)
System\Windows\Input\Manipulations\VectorF.cs (21)
35
get { return
x
; }
57
return new PointF(vector.
x
, vector.y);
72
return new VectorF(-vector.
x
, -vector.y);
99
return (vector1.
x
!= vector2.
x
|| vector1.y != vector2.y);
111
return (vector1.
x
== vector2.
x
&& vector1.y == vector2.y);
167
return new VectorF(vector1.
x
+ vector2.
x
, vector1.y + vector2.y);
178
return new PointF(point.X + vector.
x
, point.Y + vector.y);
217
return new VectorF(vector1.
x
- vector2.
x
, vector1.y - vector2.y);
245
return new VectorF(vector.
x
* scalar, vector.y * scalar);
256
return new VectorF(vector.
x
* scalar, vector.y * scalar);
267
return new VectorF(vector.
x
/ scalar, vector.y / scalar);
318
return (vector1.
x
* vector2.
x
) + (vector1.y * vector2.y);
411
double angle = Math.Atan2(vector2.y, vector2.
x
) - Math.Atan2(vector1.y, vector1.
x
);
431
return (
x
.GetHashCode() ^ y.GetHashCode());
443
x
,