Ejemplo n.º 1
0
 /// <summary>
 /// Substitute new prototype to factory
 /// </summary>
 /// <param name="newPrototype"></param>
 public void SubstitutePrototype(UserDefinedParameters newPrototype)
 {
     lock (Lock)
     {
         Prototype = newPrototype;
     }
 }
Ejemplo n.º 2
0
 public InputData(KinectData kinectData, UserDefinedParameters userParameters, TrackingState trackingStateOfGame = null)
 {
     KinectData          = kinectData;
     UserParameters      = userParameters;
     ResultData          = new TrackingResultData();
     TrackingStateOfGame = trackingStateOfGame;
 }