Search Results for

    Show / Hide Table of Contents

    Struct UInt3

    Stores a vector of 3 unsigned integers.

    Namespace: Evergine.Mathematics
    Assembly: Evergine.Mathematics.dll
    Syntax
    public struct UInt3

    Constructors

    UInt3(uint, uint, uint)

    Initializes a new instance of the UInt3 struct.

    Declaration
    public UInt3(uint x, uint y, uint z)
    Parameters
    Type Name Description
    uint x

    The x.

    uint y

    The y.

    uint z

    The z.

    Fields

    X

    X value.

    Declaration
    public uint X
    Field Value
    Type Description
    uint

    Y

    Y-value.

    Declaration
    public uint Y
    Field Value
    Type Description
    uint

    Z

    Z value.

    Declaration
    public uint Z
    Field Value
    Type Description
    uint

    Methods

    Equals(UInt3)

    Checks if the specified other object is equal.

    Declaration
    public bool Equals(UInt3 other)
    Parameters
    Type Name Description
    UInt3 other

    The other object.

    Returns
    Type Description
    bool

    The result.

    Equals(ref UInt3)

    Checks if the specified object is equal to this instance.

    Declaration
    public bool Equals(ref UInt3 other)
    Parameters
    Type Name Description
    UInt3 other

    The other object to compare to.

    Returns
    Type Description
    bool

    The result of the comparison.

    Equals(object)

    Determines whether the specified object is equal to this instance.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    object obj

    The object to compare with this instance.

    Returns
    Type Description
    bool

    true if the specified object is equal to this instance; otherwise, false.

    Overrides
    ValueType.Equals(object)

    GetHashCode()

    Returns a hash code for this instance.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int

    A hash code for this instance, suitable for use in hashing algorithms and data structures such as a hash table.

    Overrides
    ValueType.GetHashCode()

    ToString()

    Returns a string that represents this instance.

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    A string that represents this instance.

    Overrides
    ValueType.ToString()

    Extension Methods

    ReflectionHelper.GetMemberAssembly(object)
    ReflectionHelper.GetTypeName(object)
    In this article
    Back to top
    Generated by DocFX