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


Dart Point.squaredDistanceTo用法及代码示例


dart:math 库中Point.squaredDistanceTo 方法的用法介绍如下。

用法:

T squaredDistanceTo(
   Point<T> other   
)

返回 thisother 之间的平方距离。

当不需要实际值时,可以使用平方距离进行比较。

例子:

var squaredDistance =
    const Point(0, 0).squaredDistanceTo(const Point(0, 0)); // 0.0
squaredDistance =
    const Point(0, 0).squaredDistanceTo(const Point(10, 0)); // 100
squaredDistance =
    const Point(0, 0).squaredDistanceTo(const Point(0, -10)); // 100
squaredDistance =
    const Point(-10, 0).squaredDistanceTo(const Point(100, 0)); // 12100

相关用法


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