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 Enlighten CpuSystem
  • class Enlighten CpuSystemSolutionSpace
  • class Enlighten CpuTextureSamplerBase
  • class Enlighten CpuUpdateManager
  • class Enlighten CpuWorker
  • class Enlighten CubeMapDataBlock
  • class Enlighten CubeMapMeta
  • class Enlighten DefaultGeometryTransparencySampler
  • class Enlighten DefaultThreadGroup
  • class Enlighten DirectInputLightingParameters
  • class Enlighten DirectionalLight
  • class Enlighten DirectionalLightMeta
  • class Enlighten Dx9TextureUpdater
  • class Enlighten Dx11TextureUpdater
  • class Enlighten DynamicMaterialWorkspace
  • class Enlighten DynamicObject
  • class Enlighten EnlightenDataBlock
  • class Enlighten EnlightenProfile
  • class Enlighten EnlightenTask
  • class Enlighten EntireProbeSetTask
  • class Enlighten EnvironmentLightMeta
  • class Enlighten ExcludedInstance
  • class Enlighten ExporterCubemap
  • class Enlighten ExporterGeom
  • class Enlighten ExporterGlobalParameters
  • class Enlighten ExporterInstanceParameters
  • class Enlighten ExporterLineWriter
  • class Enlighten ExporterMesh
  • class Enlighten ExporterPaths
  • class Enlighten ExporterProbeRegion
  • class Enlighten ExporterProbeVolume
  • class Enlighten ExporterScene
  • class Enlighten ExporterTransform
  • class Enlighten FitModel
  • class Enlighten FixedTimeLimiter
  • class Enlighten Fp16CpuTextureSampler
  • class Enlighten FrustumLight
  • class Enlighten FunctorCommand
  • class Enlighten GenericColourBuffer
  • class Enlighten GeoClusterNode
  • class Enlighten GeoClusterNodeForest
  • class Enlighten GeoClusterNodeTree
  • class Enlighten GeoDirectionalPoint
  • class Enlighten GeometryDataBlock
  • class Enlighten GeomMeshMeta
  • class Enlighten GeomMeta
  • class Enlighten GeomProperties
  • class Enlighten GeoRayOrigin
  • class Enlighten GlTextureUpdater
  • class Enlighten GpuTextureWrapper
  • class Enlighten IAsyncTask
  • class Enlighten IBake
  • class Enlighten IBakeInputGeometryLightingNormals
  • class Enlighten IBakeInputGeometryTangents
  • class Enlighten IBakeInputGeometryUvs
  • class Enlighten IBakeInputLighting
  • class Enlighten IBakeInputMaterial
  • class Enlighten IBakeInputMeshLightingNormals
  • class Enlighten IBakeInputMeshTangents
  • class Enlighten IBakeInputMeshUvs
  • class Enlighten IBakeInputProperties
  • class Enlighten IBakeInputRayOriginPositions
  • class Enlighten IBakeInputRuntime
  • class Enlighten IBakeInputSystem
  • class Enlighten IBakeOutputProbeSet
  • class Enlighten IBakeOutputProbeSetVisibility
  • class Enlighten IBakeOutputSystemAO
  • class Enlighten IBakeOutputSystemDirect
  • class Enlighten IBakeOutputSystemFinalGather
  • class Enlighten IBakeOutputSystemIndirect
  • class Enlighten IBakeOutputSystemRadiosityNormal
  • class Enlighten IBakeOutputSystemVisibility
  • class Enlighten IBakeRuntimeLighting
  • class Enlighten IBakeSolvedRuntime
  • class Enlighten IBakeSystemResource
  • class Enlighten IBakeTextureManager
  • class Enlighten IBakeVisibilityBuffer
  • class Enlighten IClusteringOutput
  • class Enlighten IGpuTexture
  • class Enlighten IGpuTextureAllocator
  • class Enlighten IGpuTextureUpdater
    Calendars

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

    This is the documentation for Enlighten.

    class Enlighten GeoClusterNodeForest

    Nov 21, 2019

    class Enlighten::GeoClusterNodeForest

    Debugging output representation of a set of clustering metric hierarchies.

    Functions

    Name Description
    AddTree(GeoClusterNodeTree *)

    Add a tree to the forest.

    BuildRangeArray(ClusterRangeArray &)

    Builds an array of nodes where each nodes stores the starting index and number of leaf cluster nodes that it covers.

    BuildRangeArray(ClusterRangeArray &, const Geo::s32 &)

    Builds an array of nodes similar to BuildRangeArray just for a single level in the tree.

    FindNode(const Geo::s32 &)

    Locate a node with the given linear index in the forest.

    GetAncestor(Geo::s32, Geo::s32)

    Find the ancestor(s) of a given node.

    GetAncestors(Geo::GeoArray< Geo::s32 > &, const Geo::s32 &)

    Find the ancestor(s) of a given node.

    GetNumLevels()

    Get the number of levels in each hierarchy in the forest.

    GetNumNodes()

    Get the total number of nodes in the forest.

    GetNumNodes(Geo::s32)

    Get the number of nodes at a given level in the forest.

    GetNumTrees()

    Get the number of trees in the forest.

    GetTree(Geo::s32)

    Get the tree with the given idx.

    Load(Geo::IGeoInputStream &)

    Loads object from the provided stream.

    Save(Geo::IGeoStream &)

    Saves object to the provided stream.


    void Enlighten::GeoClusterNodeForest::AddTree


    public: void AddTree
    (
        GeoClusterNodeTree * tree
    )


    Add a tree to the forest.


    bool Enlighten::GeoClusterNodeForest::BuildRangeArray


    public: bool BuildRangeArray
    (
        ClusterRangeArray & rangeArray
    ) const


    Builds an array of nodes where each nodes stores the starting index and number of leaf cluster nodes that it covers.

    This assumes that a given cluster is made up of a contiguous range of leaf level cluster indices. NOTE: The leaves of the tree are triangles which are ignored since the purpose is to retrieve the (sub)clusters making up a given cluster node.


    bool Enlighten::GeoClusterNodeForest::BuildRangeArray


    public: bool BuildRangeArray
    (
        ClusterRangeArray & rangeArray,
        const Geo::s32 & level
    ) const


    Builds an array of nodes similar to BuildRangeArray just for a single level in the tree.


    const GeoClusterNodeTree* Enlighten::GeoClusterNodeForest::FindNode


    public: const GeoClusterNodeTree * FindNode
    (
        const Geo::s32 & linearIdx
    ) const


    Locate a node with the given linear index in the forest.


    const GeoClusterNodeTree* Enlighten::GeoClusterNodeForest::GetAncestor


    public: const GeoClusterNodeTree * GetAncestor
    (
        Geo::s32 linearLeafId,
        Geo::s32 level
    ) const


    Find the ancestor(s) of a given node.


    bool Enlighten::GeoClusterNodeForest::GetAncestors


    public: bool GetAncestors
    (
        Geo::GeoArray< Geo::s32 > & ancestors,
        const Geo::s32 & linearLeafId
    ) const


    Find the ancestor(s) of a given node.


    Geo::s32 Enlighten::GeoClusterNodeForest::GetNumLevels


    public: Geo::s32 GetNumLevels() const


    Get the number of levels in each hierarchy in the forest.


    Geo::s32 Enlighten::GeoClusterNodeForest::GetNumNodes


    public: Geo::s32 GetNumNodes() const


    Get the total number of nodes in the forest.


    Geo::s32 Enlighten::GeoClusterNodeForest::GetNumNodes


    public: Geo::s32 GetNumNodes
    (
        Geo::s32 level
    ) const


    Get the number of nodes at a given level in the forest.


    Geo::s32 Enlighten::GeoClusterNodeForest::GetNumTrees


    public: Geo::s32 GetNumTrees() const


    Get the number of trees in the forest.


    const GeoClusterNodeTree* Enlighten::GeoClusterNodeForest::GetTree


    public: const GeoClusterNodeTree * GetTree
    (
        Geo::s32 idx
    ) const


    Get the tree with the given idx.


    static GeoClusterNodeForest* Enlighten::GeoClusterNodeForest::Load


    public: GeoClusterNodeForest * Load
    (
        Geo::IGeoInputStream & reader
    )


    Loads object from the provided stream.


    bool Enlighten::GeoClusterNodeForest::Save


    public: bool Save
    (
        Geo::IGeoStream & writer
    ) const


    Saves object to the provided stream.

    , multiple selections available,
    {"serverDuration": 9, "requestCorrelationId": "3534d515abff4629888523131ddc50f2"}