- CloudCompare_9JnZjuE4QK.png (6.66 KiB) Viewed 1646 times
Distance Between Points
-
- Posts: 9
- Joined: Tue Dec 24, 2024 9:56 am
Distance Between Points
I'm trying to understand the distance between these two points. I understand the distance is 0.4 between points but the other values I do not understand ?
Re: Distance Between Points
Well, that's simply the shift between the points along the X, Y or Z dimension (left column) or in the XY, XZ and ZY planes (right column = 2D distances)
Daniel, CloudCompare admin
-
- Posts: 9
- Joined: Tue Dec 24, 2024 9:56 am
Re: Distance Between Points
If I understand correctly based on the screen capture, deltaX is the shift between the points, meanwhile deltaXY is the distance between the points in the XY axis ?
Meanwhile, the distance is simply the distance in mm between points ?
Re: Distance Between Points
Yes,
In more mathematical terms, if the 2 points are named P and Q :
dX = P.x - Q.x
dXY = sqrt((P.x - Q.x)^2 + (P.y - Q.y)^2)
distance = sqrt((P.x - Q.x)^2 + (P.y - Q.y)^2 + (P.z - Q.z)^2)
In more mathematical terms, if the 2 points are named P and Q :
dX = P.x - Q.x
dXY = sqrt((P.x - Q.x)^2 + (P.y - Q.y)^2)
distance = sqrt((P.x - Q.x)^2 + (P.y - Q.y)^2 + (P.z - Q.z)^2)
Daniel, CloudCompare admin
-
- Posts: 9
- Joined: Tue Dec 24, 2024 9:56 am
Re: Distance Between Points
In the math sense if R.x = 0.400002 and Q.x = 0.400007 = -0.000005 based on dX = R.x - Q.x ?
Re: Distance Between Points
Not sure to fully understand the question, but yes, dX = R.x - Q.x = -0.000005
Daniel, CloudCompare admin
-
- Posts: 9
- Joined: Tue Dec 24, 2024 9:56 am