microsoft / dotnet

This repo is the official home of .NET on GitHub. It's a great starting point to find many .NET OSS projects from Microsoft and the community, including many that are part of the .NET Foundation.
https://devblogs.microsoft.com/dotnet/
MIT License
14.43k stars 2.21k forks source link

Hope to add a method for calculating the hypotenuse with three parameters : double double.Hypot(double, double, double) #1449

Open QuarkSoftware opened 1 month ago

QuarkSoftware commented 1 month ago

Hope to add a method for calculating the hypotenuse with three parameters : double double.Hypot(double, double, double), Equivalent to Math.Sqrt(x x + y y + z * z), Simplified double.Hypot(double.Hypot(x, y), z)