Ejemplo n.º 1
0
 public GyroscopeRawData(Vector3 fromMyo)
 {
     this.X = fromMyo.X;
     this.Y = fromMyo.Y;
     this.Z = fromMyo.Z;
     double[] allVectors = { this.X, this.Y, this.Z };
     this.Normal = CommonOperations.GetNormal(allVectors);
 }