当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust f32.hypot用法及代码示例


本文简要介绍rust语言中 f32.hypot 的用法。

用法

pub fn hypot(self, other: f32) -> f32

给定长度为 xy 的边,计算 right-angle 三角形的斜边长度。

例子

let x = 2.0f32;
let y = 3.0f32;

// sqrt(x^2 + y^2)
let abs_difference = (x.hypot(y) - (x.powi(2) + y.powi(2)).sqrt()).abs();

assert!(abs_difference <= f32::EPSILON);

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 f32.hypot。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。