9 references to Asin
Microsoft.Maui.Essentials (1)
UnitConverters\UnitConverters.shared.cs (1)
262
var c = 2 * Math.
Asin
(Math.Sqrt(a));
Microsoft.Maui.Maps (1)
Primitives\GeographyUtils.cs (1)
26
double latitude = Math.
Asin
(Math.Sin(centerLatitude) * Math.Cos(distance) +
Microsoft.ML.Transforms (2)
Expression\BuiltinFunctions.cs (2)
227
FunctionProviderUtils.Fn<R8, R8>(Math.
Asin
));
623
return (R4)Math.
Asin
(a);
PresentationCore (2)
System\Windows\Media3D\Vector3D.cs (2)
168
theta = Math.PI - 2.0 * Math.
Asin
((-vector1 - vector2).Length / 2.0);
172
theta = 2.0 * Math.
Asin
((vector1 - vector2).Length / 2.0);
PresentationFramework (1)
System\Windows\Documents\TextStore.cs (1)
2860
double radSin = Math.
Asin
(tf.M12 / Math.Sqrt((tf.M11 * tf.M11) + (tf.M12 * tf.M12)));
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1787
public static double Asin(double x) => Math.
Asin
(x);
System.Runtime.Numerics (1)
System\Numerics\Complex.cs (1)
402
u = Math.
Asin
(b);