updateAdornments method

void updateAdornments(
  1. Part part
)

The diagram asks each tool to update any adornments the tool might use for a given part. If the tool uses its own tool handles, this should display them or hide them as appropriate. Typically this should only show them if the part is selected.

By default this method does nothing. This method may be overridden. Please read the Introduction page on Extensions for how to override methods and how to call this base method. @expose @param {Part} part

Implementation

void updateAdornments(_i3.Part part) {
  _i4.callMethod(
    this,
    'updateAdornments',
    [part],
  );
}