13 references to Tan
Microsoft.Maui.Controls (4)
Shapes\Matrix.cs (2)
599 matrix.SetMatrix(1.0, Math.Tan(skewY), 600 Math.Tan(skewX), 1.0,
Shapes\SkewTransform.cs (2)
88 double tanX = Math.Tan(radiansX); 89 double tanY = Math.Tan(radiansY);
Microsoft.ML.Core (1)
Utilities\Stats.cs (1)
224return (float)Math.Tan(Math.PI * (rand.NextSingle() - 0.5));
Microsoft.ML.Transforms (4)
Expression\BuiltinFunctions.cs (4)
218FunctionProviderUtils.Fn<R8, R8>(Math.Tan)); 605return (R4)Math.Tan(a); 611return (R4)Math.Tan(a * (Math.PI / 180)); 617return Math.Tan(a * (Math.PI / 180));
PresentationCore (2)
System\Windows\Media3D\PerspectiveCamera.cs (2)
78double halfWidthDepthRatio = Math.Tan(fov/2); 126double halfWidthDepthRatio = Math.Tan(fov/2);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2126public static double Tan(double x) => Math.Tan(x);
src\libraries\System.Private.CoreLib\src\System\Globalization\CalendricalCalculationsHelper.cs (1)
51return Math.Tan(RadiansFromDegrees(degree));