27 references to X
Microsoft.Maui.Essentials (7)
Accelerometer\Accelerometer.shared.cs (3)
192 $"{nameof(Acceleration.X)}: {Acceleration.X}, " + 282 var x = acceleration.X * gravity;
Gyroscope\Gyroscope.shared.cs (2)
184 $"{nameof(AngularVelocity.X)}: {AngularVelocity.X}, " +
Magnetometer\Magnetometer.shared.cs (2)
188 $"{nameof(MagneticField.X)}: {MagneticField.X}, " +
System.Private.CoreLib (20)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Matrix4x4.cs (6)
1496float x = float.MultiplyAddEstimate(centerPoint.X, 1 - c, -centerPoint.Z * s); 1497float z = float.MultiplyAddEstimate(centerPoint.Z, 1 - c, +centerPoint.X * s); 1546float x = float.MultiplyAddEstimate(centerPoint.X, 1 - c, +centerPoint.Y * s); 1547float y = float.MultiplyAddEstimate(centerPoint.Y, 1 - c, -centerPoint.X * s); 1609result.X = Vector128.Create(scales.X, 0, 0, 0); 1626result.X = Vector128.Create(scales.X, 0, 0, 0);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Quaternion.cs (2)
309(float sr, float cr) = (sin.X, cos.X);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector3.cs (12)
69/// <param name="x">The value to assign to the <see cref="X" /> field.</param> 454/// <param name="x">The value to assign to the <see cref="X" /> field.</param> 476/// <summary>Creates a vector with <see cref="X" /> initialized to the specified value and the remaining elements initialized to zero.</summary> 477/// <param name="x">The value to assign to the <see cref="X" /> field.</param> 478/// <returns>A new <see cref="Vector3" /> with <see cref="X" /> initialized <paramref name="x" /> and the remaining elements initialized to zero.</returns> 483/// <summary>Creates a vector with <see cref="X" /> initialized to the specified value and the remaining elements left uninitialized.</summary> 484/// <param name="x">The value to assign to the <see cref="X" /> field.</param> 485/// <returns>A new <see cref="Vector3" /> with <see cref="X" /> initialized <paramref name="x" /> and the remaining elements left uninitialized.</returns> 925/// <param name="xIndex">The index used to select a value from <paramref name="vector" /> to be used as the value of <see cref="X" /> in the result.</param> 1104/// <remarks>Two vectors are equal if their <see cref="X" />, <see cref="Y" />, and <see cref="Z" /> elements are equal.</remarks> 1110public override readonly int GetHashCode() => HashCode.Combine(X, Y, Z); 1152handler.AppendFormatted(X, format);