Search Results for

    Show / Hide Table of Contents

    Struct ParabolaSegment2D

    Inherited Members
    System.ValueType.Equals(System.Object)
    System.ValueType.GetHashCode()
    System.ValueType.ToString()
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetType()
    Namespace: PLATEAU.Util.GeoGraph
    Assembly: cs.temp.dll.dll
    Syntax
    public struct ParabolaSegment2D

    Constructors

    ParabolaSegment2D(Parabola2D, Single, Single)

    Declaration
    public ParabolaSegment2D(Parabola2D parabola, float minT, float maxT)
    Parameters
    Type Name Description
    Parabola2D parabola
    System.Single minT
    System.Single maxT

    Properties

    Max

    Declaration
    public readonly Vector2 Max { get; }
    Property Value
    Type Description
    Vector2

    MaxT

    Declaration
    public float MaxT { readonly get; set; }
    Property Value
    Type Description
    System.Single

    Min

    Declaration
    public readonly Vector2 Min { get; }
    Property Value
    Type Description
    Vector2

    MinT

    Declaration
    public float MinT { readonly get; set; }
    Property Value
    Type Description
    System.Single

    Parabola

    Declaration
    public Parabola2D Parabola { readonly get; set; }
    Property Value
    Type Description
    Parabola2D

    Methods

    Create(Vector2, Vector2, Nullable<Vector2>)

    Declaration
    public static ParabolaSegment2D Create(Vector2 origin, Vector2 p0, Vector2? up = null)
    Parameters
    Type Name Description
    Vector2 origin
    Vector2 p0
    System.Nullable<Vector2> up
    Returns
    Type Description
    ParabolaSegment2D

    GetPoint(Single)

    Declaration
    public Vector2 GetPoint(float t)
    Parameters
    Type Name Description
    System.Single t
    Returns
    Type Description
    Vector2
    In This Article
    Back to top PLATEAU SDK for Unity