Example #1
0
 public Resolution(int width, int height, string label, EyeFov eyeFov)
 {
     this.width  = width;
     this.height = height;
     display     = width + " x " + height + " " + label + "";
     this.eyeFov = eyeFov;
 }
Example #2
0
 public Resolution(int width, int height, EyeFov eyeFov)
 {
     this.width  = width;
     this.height = height;
     display     = width + " x " + height;
     this.eyeFov = eyeFov;
 }