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 3.10 Documentation
Results will update as you type.
  • class Geo GeoTriple
  • class Geo GeoUniqueDelegatePtr
  • class Geo GeoUniquePtr
  • class Geo GeoUniqueReleasePtr
  • class Geo GeoV128Texture
  • class Geo GeoVariant
  • class Geo GeoVirtualPageAllocator
  • class Geo GeoZLibFileStream
  • class Geo GoodRNG
  • class Geo IdentDataCompare
  • class Geo IdentVertLinkBuilder
  • class Geo IdxLink
  • class Geo IffReader
  • class Geo IffTextWriter
  • class Geo IffWriter
  • class Geo IGeoEvent
  • class Geo IGeoInputStream
  • class Geo IGeoProgressProxy
  • class Geo IGeoRayTracingContext
  • class Geo IGeoReleasable
  • class Geo IGeoSerialisable
  • class Geo IGeoStream
  • class Geo IRtMesh
  • class Geo ITerminalCmdHandler
  • class Geo ITerminalDelegate
  • class Geo ITerminalInputHandler
  • class Geo ITerminalOutputHandler
  • class Geo Matrix
  • class Geo MemoryAllocator
  • class Geo NonCopyable
  • class Geo Optional
  • class Geo PackedInteger4
  • 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 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 AtlasMeshChartingFlags
  • struct Geo AtlasMeshTriangle
  • struct Geo AtlasMeshTriangleCorner
  • struct Geo AtlasMeshVertex
  • struct Geo AtlasMeshVertexSplitResult
  • 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
    Calendars

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

    This is the documentation for Enlighten.

    class Geo RtMesh

    Nov 21, 2019

    class Geo::RtMesh

        └>Geo::IRtMesh
            └>Geo::IGeoReleasable

    A mesh container that can be stored to disk and used later as a ray tracing mesh.

    Note that it assumes that the triangles are in the 'correct' Enlighten winding order; if this is not the case, the user should be implementing IRtMesh themselves.

    Functions

    Name Description
    Clear()

    Clears this mesh.

    Create()

    Creates an RtMesh.

    Create(Geo::s32, Geo::s32)

    Creates an RtMesh.

    Create(const Geo::GeoPoint3 *, Geo::s32, const Geo::s32 *, Geo::s32, const Geo::s32 *)

    Creates an RtMesh.

    Create(const IRtMesh *)

    Creates an RtMesh.

    GetNumRtTriangles()

    Returns how many triangles in the mesh.

    GetNumRtTriangles()

    Returns how many triangles in the mesh.

    GetNumRtVertices()

    Returns how many vertices in the mesh.

    GetNumRtVertices()

    Returns how many vertices in the mesh.

    GetRtTrianglePayload(Geo::s32)

    Gets the payload data for the given triangle index.

    Load(Geo::IGeoInputStream &, Geo::u32)

    Load an instance of this class from an IGeoInputStream.

    Release()

    Free this object that was created within the Enlighten libraries.

    Release()

    Free this object that was created within the Enlighten libraries.

    Save(Geo::IGeoStream &, Geo::u32)

    Save an instance of this class to an IGeoStream.

    VisitRtMesh(Geo::EmbreeRtMeshVisitor &)

    Calls methods on the given RtMeshVisitor for each vertex and triangle in the mesh.

    VisitRtMesh(EmbreeRtMeshVisitor &)

    Calls methods on the given RtMeshVisitor for each vertex and triangle in the mesh.


    void Geo::RtMesh::Clear


    public: void Clear()


    Clears this mesh.


    static RtMesh* Geo::RtMesh::Create


    public: RtMesh * Create()


    Creates an RtMesh.


    static RtMesh* Geo::RtMesh::Create


    public: RtMesh * Create
    (
        Geo::s32 numVertices,
        Geo::s32 numTriangles
    )


    Creates an RtMesh.


    static RtMesh* Geo::RtMesh::Create


    public: RtMesh * Create
    (
        const Geo::GeoPoint3 * vertices,
        Geo::s32 numVertices,
        const Geo::s32 * triVertexIds,
        Geo::s32 numTriVertexIds,
        const Geo::s32 * triPayload
    )


    Creates an RtMesh.


    static RtMesh* Geo::RtMesh::Create


    public: RtMesh * Create
    (
        const IRtMesh * mesh
    )


    Creates an RtMesh.


    virtual Geo::s32 Geo::RtMesh::GetNumRtTriangles


    public: virtual Geo::s32 GetNumRtTriangles() const


    Returns how many triangles in the mesh.


    virtual Geo::s32 Geo::IRtMesh::GetNumRtTriangles


    public: Geo::s32 GetNumRtTriangles() const


    Returns how many triangles in the mesh.


    virtual Geo::s32 Geo::RtMesh::GetNumRtVertices


    public: virtual Geo::s32 GetNumRtVertices() const


    Returns how many vertices in the mesh.


    virtual Geo::s32 Geo::IRtMesh::GetNumRtVertices


    public: Geo::s32 GetNumRtVertices() const


    Returns how many vertices in the mesh.


    Geo::s32 Geo::RtMesh::GetRtTrianglePayload


    public: Geo::s32 GetRtTrianglePayload
    (
        Geo::s32 idx
    ) const


    Gets the payload data for the given triangle index.


    bool Geo::RtMesh::Load


    public: bool Load
    (
        Geo::IGeoInputStream & stream,
        Geo::u32 section
    )


    Load an instance of this class from an IGeoInputStream.


    virtual void Geo::RtMesh::Release


    public: virtual void Release()


    Free this object that was created within the Enlighten libraries.

    Expect this to behave in a similar way to calling 'delete(this)'


    virtual void Geo::IGeoReleasable::Release


    public: void Release()


    Free this object that was created within the Enlighten libraries.

    Expect this to behave in a similar way to calling 'delete(this)'


    bool Geo::RtMesh::Save


    public: bool Save
    (
        Geo::IGeoStream & stream,
        Geo::u32 section
    ) const


    Save an instance of this class to an IGeoStream.


    virtual void Geo::RtMesh::VisitRtMesh


    public: virtual void VisitRtMesh
    (
        Geo::EmbreeRtMeshVisitor & visitor
    ) const


    Calls methods on the given RtMeshVisitor for each vertex and triangle in the mesh.


    virtual void Geo::IRtMesh::VisitRtMesh


    public: void VisitRtMesh
    (
        EmbreeRtMeshVisitor & visitor
    ) const


    Calls methods on the given RtMeshVisitor for each vertex and triangle in the mesh.

    , multiple selections available,
    {"serverDuration": 11, "requestCorrelationId": "b9f0f6aaabd848af8e6aa3d18b1ac45f"}