VelocityNedYaw

public struct VelocityNedYaw : Equatable

Type for velocity commands in NED (North East Down) coordinates and yaw.

  • Undocumented

    Declaration

    Swift

    public let northMS: Float
  • Undocumented

    Declaration

    Swift

    public let eastMS: Float
  • Undocumented

    Declaration

    Swift

    public let downMS: Float
  • Undocumented

    Declaration

    Swift

    public let yawDeg: Float
  • Initializes a new VelocityNedYaw.

    Declaration

    Swift

    public init(northMS: Float, eastMS: Float, downMS: Float, yawDeg: Float)

    Parameters

    northMS

    Velocity North (in metres/second)

    eastMS

    Velocity East (in metres/second)

    downMS

    Velocity Down (in metres/second)

    yawDeg

    Yaw in degrees (0 North, positive is clock-wise looking from above)

  • Declaration

    Swift

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