Class SoMultiSwitch

All Implemented Interfaces:
SafeDisposable

public class SoMultiSwitch extends SoGroup
Group node that traverses a set of chosen children. This group node traverses none, all or a specified list of its children. Effectively it is an extended version of the SoSwitch node.

The whichChildren field specifies a list of children (by index) to traverse, where the first child has index 0. The traversalMode field can specify to traverse none of the children, all of the children, the children in the list or all the children not in the list.

NOTES:

  • Remember that the default value for traversalMode is NONE, meaning that nothing is displayed by default.
  • Remember that this node is an SoGroup, NOT an SoSeparator, and therefore does not provide render caching. Generally if the children contain geometry, it is good practice to make each child an SoSeparator to make render caching more effective.

File format/default:

MultiSwitch {

    whichChildren [ ]
    traversalMode NONE
    inherit NO
}

Action behavior:

SoGLRenderAction, SoCallbackAction, SoGetBoundingBoxAction, SoGetMatrixAction, SoHandleEventAction, SoRayPickAction
Traverses the chosen child or children. Sets: SoSwitchElement

SoSearchAction
If the action's Searching-All flag is set, always traverses all children. Otherwise, traverses just the chosen child or children.

See Also:
  • Field Details

    • whichChildren

      public final SoMFInt32 whichChildren
      Indices of the children to traverse. Default is empty.
    • traversalMode

      public final SoSFEnum<SoMultiSwitch.TraversalModes> traversalMode
      Defines the way the children list must be managed. . Default is NONE.
    • inheritMode

      public final SoSFEnum<SoMultiSwitch.InheritModes> inheritMode
      Defines the way this node inherit values from the state. . Default is NO.
  • Constructor Details

    • SoMultiSwitch

      public SoMultiSwitch(int nChildren)
      Constructor that takes approximate number of children.
    • SoMultiSwitch

      public SoMultiSwitch()
      Creates a multi-switch node with default settings.