bearingsToRegister property

List<Bearing> bearingsToRegister
read / write

Bearings to register in this session

@note The number of faces to register is determined by the {@linkcode VerIDSessionSettings.numberOfResultsToCollect} parameter. If the number of results to collect exceeds the number of bearings to register the session will start take the next bearing from the beginning of the bearings array.

For example, a session with bearings to register set to [Bearing.STRAIGHT, Bearing.LEFT, Bearing.RIGHT] and numberOfResultsToCollect set to 2 will register faces with bearings: [Bearing.STRAIGHT, Bearing.LEFT].

A session with bearings to register set to ```Bearing.STRAIGHT, Bearing.LEFT, Bearing.RIGHTandnumberOfResultsToCollectset to2will register faces with bearings:Bearing.STRAIGHT, Bearing.LEFT, Bearing.RIGHT, Bearing.STRAIGHT`.

Implementation

List<Bearing> bearingsToRegister = [
  Bearing.STRAIGHT,
  Bearing.LEFT,
  Bearing.RIGHT
];