当前位置:网站首页>计算两点之间的距离
计算两点之间的距离
2022-08-01 23:03:00 【紫微前端】
JavaScript version
const distance = (p1, p2) => Math.sqrt(Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2));TypeScript version
interface Point {
x: number;
y: number;
}
const distance = (p1: Point, p2: Point): number => Math.sqrt(Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2));边栏推荐
- 小程序毕设作品之微信体育馆预约小程序毕业设计成品(3)后台功能
- 03、GO语言变量定义、函数
- excel split text into different rows
- (翻译)按钮的对比色引导用户操作的方式
- E - Integer Sequence Fair
- SAP Spartacus NgExpressEngineDecorator 的工作原理
- excel change cell size
- 如何给 UE4 场景添加游戏角色
- Small application project works WeChat stadium booking applet graduation design of the finished product (1) the development profile
- 数据增强--学习笔记(图像类,cnn)
猜你喜欢

SRv6 L3VPN的工作原理

Codeforces CodeTON Round 2 (Div. 1 + Div. 2, Rated, Prizes!) A-D 题解
SQL29 Calculate the average next day retention rate of users

From 0 to 1: Design and R&D Notes of Graphic Voting Mini Program

Prufer序列

Small application project works WeChat stadium booking applet graduation design of the finished product (1) the development profile

npm包【详解】(内含npm包的开发、发布、安装、更新、搜索、卸载、查看、版本号更新规则、package.json详解等)

Postman batch test interface detailed tutorial

联邦学习在金融领域的发展和应用

Still struggling with reporting tool selection?To take a look at this
随机推荐
罗克韦尔AB PLC RSLogix5000中的比较指令使用方法介绍
B. Difference Array--Codeforces Round #808 (Div. 1)
Chapter 12 End-User Task As Shell Scripts
[机缘参悟-58]:《素书》-5-奉行仁义[遵义章第五]
华为无线设备配置全局双链路冷备份(AC全局配置方式)
文件查询匹配神器 【glob.js】 实用教程
vscode hide menu bar
【好书推荐】第一本无人驾驶技术书
Wechat Gymnasium Appointment Mini Program Graduation Design Finished Work (4) Opening Report
Ten years after graduation, financial freedom: those things that are more important than hard work, no one will ever teach you
牛客多校4 A.Task Computing 思维
小程序毕设作品之微信美食菜谱小程序毕业设计成品(6)开题答辩PPT
13、学习MySQL 分组
深度学习Course2第二周Optimization Algorithms习题整理
Flutter基础学习(一)Dart语言入门
如何理解 new (...args: any[]) => any
The must-have "fishing artifact" for programmers is here!
xctf攻防世界 Web高手进阶区 web2
Background project Express-Mysql-Vue3-TS-Pinia page layout-sidebar menu
最短路模板