[DiscordArchive] how do you calculate distance from **x1,y1,z1** to **x2,y2,z2** ?
[DiscordArchive] how do you calculate distance from **x1,y1,z1** to **x2,y2,z2** ?
Archived author: Deleted User • Posted: 2020-05-11T12:55:33.562000+00:00
Original source
how do you calculate distance from **x1,y1,z1** to **x2,y2,z2** ?
Archived author: ModoX • Posted: 2020-05-11T13:03:28+00:00
Original source
abs(x2-x1) + abs(y2-y1) + abs(z2-z1)
Archived author: Deleted User • Posted: 2020-05-11T13:22:48.175000+00:00
Original source
thx modoX