SpeedBody

public struct SpeedBody : Equatable

Speed type, represented in the Body (X Y Z) frame and in metres/second.

  • xMS

    Undocumented

    Declaration

    Swift

    public let xMS: Float
  • yMS

    Undocumented

    Declaration

    Swift

    public let yMS: Float
  • zMS

    Undocumented

    Declaration

    Swift

    public let zMS: Float
  • Initializes a new SpeedBody.

    Declaration

    Swift

    public init(xMS: Float, yMS: Float, zMS: Float)

    Parameters

    xMS

    Velocity in X in metres/second.

    yMS

    Velocity in Y in metres/second.

    zMS

    Velocity in Z in metres/second.

  • Declaration

    Swift

    public static func == (lhs: SpeedBody, rhs: SpeedBody) -> Bool