Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)

Enlighten API 4.03 Documentation
Results will update as you type.
  • class Geo PackedInteger64
  • class Geo PackedIntegerArray
  • class Geo PackedKeyValuePair
  • class Geo PointLeaf
  • class Geo PointSplit
  • class Geo PointSplitBounds
  • class Geo PointSplitState
  • class Geo QuickTaskTimer
  • class Geo RayResult
  • class Geo Releasable
  • class Geo RingBuffer
  • class Geo RtMesh
  • class Geo RtMeshGroup
  • class Geo ScopedTickCounter
  • class Geo ScopedTimer
  • class Geo SHCoeff
  • class Geo SimpleRNG
  • class Geo StridedArrayView
  • class Geo TerminalProvider
  • class Geo TextureWriter
  • class Geo TreeNode
  • class Geo TriGroupSelection
  • class Geo TxtProgressBar
  • namespace Geo Iff
  • namespace Geo PathUtils
  • namespace Geo Version
  • struct Geo ArrayRange
  • struct Geo BboxEdge
  • struct Geo BboxFace
  • struct Geo ClippedRay
  • struct Geo DebugLine
  • struct Geo eWindingOrder
  • struct Geo FixedSizeArray
  • struct Geo GeoAtomic
  • struct Geo GeoError
  • struct Geo GeoFixedPoolList
  • struct Geo GeoFixedPoolMap
  • struct Geo GeoPoint2
  • struct Geo GeoPoint2D
  • struct Geo GeoPoint3
  • struct Geo GeoPoint3D
  • struct Geo GeoRGBXTextureElement
  • struct Geo GeoVector3
  • struct Geo GeoVector4
  • struct Geo InitRayTracing
  • struct Geo Matrix4x4
  • struct Geo PerformanceBlock
  • struct Geo RastFragment
  • struct Geo RastTri
  • struct Geo RastVert
  • struct Geo Rayf
  • struct Geo ScopeStartStop
  • struct Geo Statistics
  • struct Geo StringExpression
  • struct Geo TypeInfo
  • struct Geo VectorD
  • struct Geo WriteRangePolicy
  • struct Geo ZeroedPadding
  • union Geo GeoFloat3SE
  • union Geo GeoFloatAsBits
    Calendars

You‘re viewing this with anonymous access, so some content might be blocked.
/
struct Geo GeoPoint3D

    This is the documentation for Enlighten.

    struct Geo GeoPoint3D

    Sept 09, 2025

    struct Geo::GeoPoint3D

    Integer 3 dimensional point class.

    Functions

    Name Description
    GeoPoint3D()

    Constructors.

    GeoPoint3D(s32, s32, s32)

    Constructors.

    GeoPoint3D(s32)

    Constructors.

    operator-()

    Component-wise negate.

    operator-(GeoPoint3D const &)

    Component-wise subtraction (translation).

    operator!=(const GeoPoint3D &)

    Inequality operator.

    operator&(u32)

    Component-wise logical operations.

    operator*(GeoPoint3D const &)

    Component-wise multiplication (scale).

    operator*(s32)

    Scalar multiplication.

    operator*=(s32)

    Scalar multiplication.

    operator*=(const GeoPoint3D &)

    Component-wise multiplication (scale).

    operator/(s32)

    Scalar division.

    operator/(GeoPoint3D const &)

    Component-wise division.

    operator/=(s32)

    Scalar division.

    operator/=(const GeoPoint3D &)

    Component-wise division.

    operator|(s32)

    Component-wise logical operations.

    operator+(GeoPoint3D const &)

    Component-wise addition (translation).

    operator+=(const GeoPoint3D &)

    Component-wise addition (translation).

    operator<<(u32)

    Component-wise arithmetic shift.

    operator-=(const GeoPoint3D &)

    Component-wise subtraction (translation).

    operator==(const GeoPoint3D &)

    Equality operator.

    operator>>(u32)

    Component-wise arithmetic shift.

    Variables

    Name Description
    s32 X

    X coordinate.

    s32 Y

    Y coordinate.

    s32 Z

    Z coordinate.


    Geo::GeoPoint3D::GeoPoint3D


    public: GeoPoint3D()


    Constructors.


    Geo::GeoPoint3D::GeoPoint3D


    public: GeoPoint3D
    (
        s32 InX,
        s32 InY,
        s32 InZ
    )


    Constructors.


    Geo::GeoPoint3D::GeoPoint3D


    public: GeoPoint3D
    (
        s32 InSize
    )


    Constructors.


    GeoPoint3D Geo::GeoPoint3D::operator-


    public: GeoPoint3D operator-() const


    Component-wise negate.


    GeoPoint3D Geo::GeoPoint3D::operator-


    public: GeoPoint3D operator-
    (
        GeoPoint3D const & rhs
    ) const


    Component-wise subtraction (translation).


    bool Geo::GeoPoint3D::operator!=


    public: bool operator!=
    (
        const GeoPoint3D & Other
    ) const


    Inequality operator.


    GeoPoint3D Geo::GeoPoint3D::operator&


    public: GeoPoint3D operator&
    (
        u32 rhs
    ) const


    Component-wise logical operations.


    GeoPoint3D Geo::GeoPoint3D::operator*


    public: GeoPoint3D operator*
    (
        GeoPoint3D const & rhs
    ) const


    Component-wise multiplication (scale).


    GeoPoint3D Geo::GeoPoint3D::operator*


    public: GeoPoint3D operator*
    (
        s32 Scale
    ) const


    Scalar multiplication.


    GeoPoint3D& Geo::GeoPoint3D::operator*=


    public: GeoPoint3D & operator*=
    (
        s32 Scale
    )


    Scalar multiplication.


    GeoPoint3D& Geo::GeoPoint3D::operator*=


    public: GeoPoint3D & operator*=
    (
        const GeoPoint3D & Other
    )


    Component-wise multiplication (scale).


    GeoPoint3D Geo::GeoPoint3D::operator/


    public: GeoPoint3D operator/
    (
        s32 Divisor
    ) const


    Scalar division.


    GeoPoint3D Geo::GeoPoint3D::operator/


    public: GeoPoint3D operator/
    (
        GeoPoint3D const & rhs
    ) const


    Component-wise division.


    GeoPoint3D& Geo::GeoPoint3D::operator/=


    public: GeoPoint3D & operator/=
    (
        s32 Divisor
    )


    Scalar division.


    GeoPoint3D& Geo::GeoPoint3D::operator/=


    public: GeoPoint3D & operator/=
    (
        const GeoPoint3D & Other
    )


    Component-wise division.


    GeoPoint3D Geo::GeoPoint3D::operator|


    public: GeoPoint3D operator|
    (
        s32 rhs
    ) const


    Component-wise logical operations.


    GeoPoint3D Geo::GeoPoint3D::operator+


    public: GeoPoint3D operator+
    (
        GeoPoint3D const & rhs
    ) const


    Component-wise addition (translation).


    GeoPoint3D& Geo::GeoPoint3D::operator+=


    public: GeoPoint3D & operator+=
    (
        const GeoPoint3D & Other
    )


    Component-wise addition (translation).


    GeoPoint3D Geo::GeoPoint3D::operator<<


    public: GeoPoint3D operator<<
    (
        u32 shift
    ) const


    Component-wise arithmetic shift.


    GeoPoint3D& Geo::GeoPoint3D::operator-=


    public: GeoPoint3D & operator-=
    (
        const GeoPoint3D & Other
    )


    Component-wise subtraction (translation).


    bool Geo::GeoPoint3D::operator==


    public: bool operator==
    (
        const GeoPoint3D & Other
    ) const


    Equality operator.


    GeoPoint3D Geo::GeoPoint3D::operator>>


    public: GeoPoint3D operator>>
    (
        u32 shift
    ) const


    Component-wise arithmetic shift.

    , multiple selections available,
    {"serverDuration": 10, "requestCorrelationId": "79a77e9a1108418dbe0a6af571375fec"}