Skip to main content
Skip table of contents

The Scene Tree

This application has it's own scene tree in which sessions store their computed outputs, but you can also create, adjust and remove parts of the scene tree yourself. (Example: In some cases you might want to adjust the geometry that you get back from our servers. You might want to hide some objects first, or simply don't want to display them at all. In most cases, there is no need to adjust the scene tree though.)

The scene tree is a tree structure with a single root node. Every node can have any number of children and data items. The data items contain the actual information, whereas the nodes are only used to maintain and manage the hierarchy.

Data items can simply be changed and adjusted. Only the version of the data item has to be updated to notify the renderer that a change has happened.


Basic Setup

Before we do anything, the scene tree has already been created. There is nothing in it besides the root node. So let's just look at how the scene tree looks after we create a single session. Our scene tree now change as a node was added automatically. Let's assume, the session has two outputs with one content each. Then the scene tree will look like this:

Please note that the geometry and data items will not be directly in these nodes. This visualization is simplified. In reality, there are many more children that depict the hierarchy of the geometry.

In the sections below, we describe how to manipulate the scene tree using the API. Grasshopper designers can find out more here about how to influence the scene tree using attributes in their definition. The structure defined in Grasshopper will be mirrored in the outputs resulting from parameter customization requests, including naturally the default geometry coming after initializing the session.


Copying Nodes

If we would customize the scene again, every output that is loaded again would be overwritten. Therefore, we now save our session node by copying it. Additionally, we translate it to see both at once.


Adjusting the Scene tree

Let's now customize the scene again.


The result is now that we have the geometry two times, once in the old configuration and once in the new configuration.


Traversing the Scene Tree

You can traverse the scene tree and its data by using the utility functions traverse and traverseData.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.