OOF2: The Manual

Name

OOF.SegmentSelection.Select_from_Selected_Elements — Select segments from selected elements.

Synopsis

OOF.SegmentSelection.Select_from_Selected_Elements(skeleton, internal, boundary)

Details

  • Parent Menu: OOF.SegmentSelection
  • Callback: function modify in module ooflib.engine.skeletonselectionmod
  • Parameters:

    skeleton
    Type: The path to an existing Skeleton object.
    internal
    Select internal segments. Type: Boolean: True or False.
    boundary
    Select boundary segments. Type: Boolean: True or False.

Description

OOF.SegmentSelection.Select_From_Selected_Elements provides three ways of selecting Segments based on a pre-existing Element selection. The two parameters internal and boundary control which Segments will be selected. If internal is true, then the Segments that are shared by exactly two selected Elements will be selected. If boundary is true, then the Segments that are part of only one selected Element will be selected.

Figure 6.56. Selecting Segments from Selected Elements

Selecting Segments from Selected Elements

A Skeleton containing some selected Elements, in red, and the three ways of selecting Segments from them.

(a) internal=False and boundary=True.

(b) internal=True and boundary=False.

(c) internal=True and boundary=True.


See Also