Search Results for

    Show / Hide Table of Contents

    Class CameraOrthographic

    Inheritance
    object
    CameraOrthographic
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: glTFLoader.Schema
    Assembly: Evergine.Assets.dll
    Syntax
    public class CameraOrthographic

    Properties

    Extensions

    Dictionary object with extension-specific objects.

    Declaration
    [JsonProperty("extensions")]
    public Dictionary<string, object> Extensions { get; set; }
    Property Value
    Type Description
    Dictionary<string, object>

    Extras

    Application-specific data.

    Declaration
    [JsonProperty("extras")]
    public Extras Extras { get; set; }
    Property Value
    Type Description
    Extras

    Xmag

    The floating-point horizontal magnification of the view. Must not be zero.

    Declaration
    [JsonRequired]
    [JsonProperty("xmag")]
    public float Xmag { get; set; }
    Property Value
    Type Description
    float

    Ymag

    The floating-point vertical magnification of the view. Must not be zero.

    Declaration
    [JsonRequired]
    [JsonProperty("ymag")]
    public float Ymag { get; set; }
    Property Value
    Type Description
    float

    Zfar

    The floating-point distance to the far clipping plane. zfar must be greater than znear.

    Declaration
    [JsonRequired]
    [JsonProperty("zfar")]
    public float Zfar { get; set; }
    Property Value
    Type Description
    float

    Znear

    The floating-point distance to the near clipping plane.

    Declaration
    [JsonRequired]
    [JsonProperty("znear")]
    public float Znear { get; set; }
    Property Value
    Type Description
    float

    Methods

    ShouldSerializeExtensions()

    Declaration
    public bool ShouldSerializeExtensions()
    Returns
    Type Description
    bool

    ShouldSerializeExtras()

    Declaration
    public bool ShouldSerializeExtras()
    Returns
    Type Description
    bool

    Extension Methods

    ReflectionHelper.GetMemberAssembly(object)
    ReflectionHelper.GetTypeName(object)
    In This Article
    Back to top
    Generated by DocFX