public EyeTextureData()
 {
     BrightTexture = new LeapTextureData();
       RawTexture = new LeapTextureData();
       Distortion = new LeapDistortionData();
 }
 public EyeTextureData()
 {
     TextureData = new LeapTextureData();
     Distortion  = new LeapDistortionData();
 }
 public EyeTextureData()
 {
     BrightTexture = new LeapTextureData();
     RawTexture    = new LeapTextureData();
     Distortion    = new LeapDistortionData();
 }
Beispiel #4
0
 public EyeTextureData(LeapImageRetriever leapImageRetriever)
 {
     TextureData = new List <LeapTextureData>();
     Distortion  = new LeapDistortionData();
     Distortion.leapImageRetriever = leapImageRetriever;
 }