VectorAccuracy

@frozen
public enum VectorAccuracy : UInt8

Indicates the accuracy of a given vector sample.

  • The sample is unreliable.

    Declaration

    Swift

    case unreliable = 0
  • low

    The sample accuracy is low.

    Declaration

    Swift

    case low = 1
  • The sample accuracy is medium.

    Declaration

    Swift

    case medium = 2
  • The sample accuracy is high.

    Declaration

    Swift

    case high = 3
  • Declaration

    Swift

    public var description: String { get }