public Gesture(String s, Vec3 l, Vec3 r)
 {
     this.GestureName = s;
     this.LeftHand = l;
     this.RightHand = r;
 }
 public Vec3(Vec3 v)
 {
     this.X = v.X;
     this.Y = v.Y;
     this.Z = v.Z;
 }