About Vector3 in NuitrackSDK

Hello , I wanted to know how to get the distance between two Vector3 by c#. and my attempt is as follows:

Math.Sqrt(Math.Pow(LeftShoulder.Real.X- Collar.Real.X,2)+Math.Pow(LeftShoulder.Real.Y - Collar.Real.Y,2)+ Math.Pow(LeftShoulder.Real.Z - Collar.Real.Z,2))

Hi Nolle,

You’re right, this is a correct way to get the distance between two Vector3.