hello
can you write a c # example about the following structures.
Angle : (X:Thumb, Index, Middle, Ring, Pinky) (Y: Distal, Intermediate, Proximal)
1.Angle X1 Finger's Y1 and Y2 Bones' Direction Vectors
2.Angle X1 and X2 Finger Direction Vectors
3.Angle X1 Finger's Y1 Bones' Direction and Hand's Direction Vectors
4.Angle X1 Finger's Y1 and Y2 Bones' Direction and Hand's Direction Vectors
5.Angle X1 Finger's Y1 Bones' Direction and Palm Normal Vectors
I wrote with the following structure, but is it true?
1.Angle X1 Finger's Y1 and Y2 Bones' Direction Vectors
(frame.Hands.Rightmost.Fingers[2].Bone(Bone.BoneType.TYPE_INTERMEDIATE).Direction.AngleTo(frame.Hands.Rightmost.Fingers[2].Bone(Bone.BoneType.TYPE_PROXIMAL).NextJoint));
thank you