// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema
{
///
/// An orthographic camera containing properties to create an orthographic
/// projection matrix.
/// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/camera.orthographic.schema.json
///
[Serializable]
public class GltfCameraOrthographic : GltfProperty
{
///
/// The floating-point horizontal magnification of the view.
///
public double xMag;
///
/// The floating-point vertical magnification of the view.
///
public double yMag;
///
/// The floating-point distance to the far clipping plane.
///
public double zFar;
///
/// The floating-point distance to the near clipping plane.
///
public double zNear;
}
}