1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-09 23:22:28 +08:00

feat: add PointDistance

This commit is contained in:
dudaodong
2023-03-23 17:49:07 +08:00
parent c28803b25e
commit cde5946bf0
3 changed files with 27 additions and 0 deletions

View File

@@ -254,3 +254,12 @@ func ExampleRadianToAngle() {
// 90
// 45
}
func ExamplePointDistance() {
result1 := PointDistance(1, 1, 4, 5)
fmt.Println(result1)
// Output:
// 5
}