Пример #1
0
 public SerializableCAVECam(string leftEyePath, string rightEyePath, string description)
 {
     leftEye          = new SerializableCAVECamEye(leftEyePath);
     rightEye         = new SerializableCAVECamEye(rightEyePath);
     this.description = description;
 }
Пример #2
0
 public SerializableCAVECam(SerializableCAVECamEye leftEye, SerializableCAVECamEye rightEye, string description)
 {
     this.leftEye     = leftEye;
     this.rightEye    = rightEye;
     this.description = description;
 }