internal Perspective(Schema2.CameraPerspective persp) { this.AspectRatio = persp.AspectRatio; this.VerticalFOV = persp.VerticalFOV; this.ZNear = persp.ZNear; this.ZFar = persp.ZFar; }
internal Perspective(Schema2.CameraPerspective persp) : base(persp.ZNear, persp.ZFar) { this.AspectRatio = persp.AspectRatio; this.VerticalFOV = persp.VerticalFOV; }