9 writes to _y
PresentationCore (9)
System\Windows\Media3D\Quaternion.cs (9)
54
_y
= y;
75
_y
= v.Y;
203
_y
= -_y;
221
_y
/= norm2;
246
_y
*= rmax;
253
_y
*= normInverse;
400
_y
*= scale;
494
to.
_y
= -to._y;
633
_y
= value;
41 references to _y
PresentationCore (41)
System\Windows\Media3D\Generated\Quaternion.cs (1)
328
_y
,
System\Windows\Media3D\Quaternion.cs (40)
115
if (IsDistinguishedIdentity || (_x == 0 &&
_y
== 0 && _z == 0))
121
Vector3D v = new Vector3D(_x,
_y
, _z);
141
double msin = Math.Sqrt(_x*_x +
_y
*
_y
+ _z*_z);
150
double maxcoeff = Math.Max(Math.Abs(_x),Math.Max(Math.Abs(
_y
),Math.Abs(_z)));
152
double y =
_y
/maxcoeff;
175
double norm2 = _x*_x +
_y
*
_y
+ _z*_z + _w*_w;
187
return IsDistinguishedIdentity || (_x == 0 &&
_y
== 0 && _z == 0 && _w == 1);
203
_y = -
_y
;
219
double norm2 = _x*_x +
_y
*
_y
+ _z*_z + _w*_w;
236
double norm2 = _x*_x +
_y
*
_y
+ _z*_z + _w*_w;
241
Math.Abs(
_y
),
249
norm2 = _x*_x +
_y
*
_y
+ _z*_z + _w*_w;
288
left.
_y
+ right.
_y
,
329
return new Quaternion(-right._x, -right.
_y
, -right._z, 1 - right._w);
334
left.
_y
- right.
_y
,
368
double x = left._w * right._x + left._x * right._w + left.
_y
* right._z - left._z * right.
_y
;
369
double y = left._w * right.
_y
+ left.
_y
* right._w + left._z * right._x - left._x * right._z;
370
double z = left._w * right._z + left._z * right._w + left._x * right.
_y
- left.
_y
* right._x;
371
double w = left._w * right._w - left._x * right._x - left.
_y
* right.
_y
- left._z * right._z;
415
double norm2 = _x*_x +
_y
*
_y
+ _z*_z + _w*_w;
425
double max = Math.Max(Math.Max(Math.Abs(_x),Math.Abs(
_y
)),
429
double y =
_y
/max;
484
cosOmega = from._x*to._x + from.
_y
*to.
_y
+ from._z*to._z + from._w*to._w;
494
to._y = -to.
_y
;
565
scaleFrom*from.
_y
+ scaleTo*to.
_y
,
623
return
_y
;