Пример #1
0
 internal Perspective(Schema2.CameraPerspective persp)
 {
     this.AspectRatio = persp.AspectRatio;
     this.VerticalFOV = persp.VerticalFOV;
     this.ZNear = persp.ZNear;
     this.ZFar = persp.ZFar;
 }
Пример #2
0
 internal Perspective(Schema2.CameraPerspective persp)
     : base(persp.ZNear, persp.ZFar)
 {
     this.AspectRatio = persp.AspectRatio;
     this.VerticalFOV = persp.VerticalFOV;
 }