Search Results for

    Show / Hide Table of Contents

    Class CameraPerspective

    Inheritance
    object
    CameraPerspective
    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 CameraPerspective

    Properties

    AspectRatio

    The floating-point aspect ratio of the field of view.

    Declaration
    [JsonProperty("aspectRatio")]
    public float? AspectRatio { get; set; }
    Property Value
    Type Description
    float?

    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

    Yfov

    The floating-point vertical field of view in radians.

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

    Zfar

    The floating-point distance to the far clipping plane.

    Declaration
    [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

    ShouldSerializeAspectRatio()

    Declaration
    public bool ShouldSerializeAspectRatio()
    Returns
    Type Description
    bool

    ShouldSerializeExtensions()

    Declaration
    public bool ShouldSerializeExtensions()
    Returns
    Type Description
    bool

    ShouldSerializeExtras()

    Declaration
    public bool ShouldSerializeExtras()
    Returns
    Type Description
    bool

    ShouldSerializeZfar()

    Declaration
    public bool ShouldSerializeZfar()
    Returns
    Type Description
    bool

    Extension Methods

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