14 writes to _w
PresentationCore (14)
System\Windows\Media3D\Quaternion.cs (14)
56
_w
= w;
77
_w
= Math.Cos(0.5 * angleInRadians);
223
_w
/= norm2;
248
_w
*= rmax;
255
_w
*= normInverse;
275
left.
_w
+= 1;
282
right.
_w
+= 1;
322
left.
_w
-= 1;
395
_w
= scale;
402
_w
*= scale;
467
from.
_w
= 1;
471
to.
_w
= 1;
496
to.
_w
= -to._w;
682
_w
= value;
36 references to _w
PresentationCore (36)
System\Windows\Media3D\Generated\Quaternion.cs (1)
330
_w
);
System\Windows\Media3D\Quaternion.cs (35)
142
double mcos =
_w
;
156
mcos =
_w
/maxcoeff;
175
double norm2 = _x*_x + _y*_y + _z*_z +
_w
*
_w
;
187
return IsDistinguishedIdentity || (_x == 0 && _y == 0 && _z == 0 &&
_w
== 1);
219
double norm2 = _x*_x + _y*_y + _z*_z +
_w
*
_w
;
236
double norm2 = _x*_x + _y*_y + _z*_z +
_w
*
_w
;
243
Math.Abs(
_w
));
249
norm2 = _x*_x + _y*_y + _z*_z +
_w
*
_w
;
290
left.
_w
+ right.
_w
);
329
return new Quaternion(-right._x, -right._y, -right._z, 1 - right.
_w
);
336
left.
_w
- right.
_w
);
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
;
426
Math.Max(Math.Abs(_z),Math.Abs(
_w
)));
431
double w =
_w
/max;
484
cosOmega = from._x*to._x + from._y*to._y + from._z*to._z + from.
_w
*to.
_w
;
496
to._w = -to.
_w
;
567
scaleFrom*from.
_w
+ scaleTo*to.
_w
);
671
return
_w
;