Beispiel #1
0
 //Gesture Data - Export
 public static byte[] ExportGesture(ref List <Vector3> point, GConfig.Hand hand)
 {
     double[] v    = Preprocess(point, hand);
     byte[]   data = GUtil.ConvertToBytes(v);
     return(data);
 }