aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/math/hypot.c.v
blob: 9710ea4a1d2cb52df7e1b9831abde67ac61adca1 (plain)
1
2
3
4
5
6
7
8
9
module math

fn C.hypot(x f64, y f64) f64

// Returns hypotenuse of a right triangle.
[inline]
pub fn hypot(x f64, y f64) f64 {
	return C.hypot(x, y)
}