VelocityBody
public struct VelocityBody : Equatable
Velocity type, represented in the Body (X Y Z) frame and in metres/second.
-
Undocumented
Declaration
Swift
public let xMS: Float
-
Undocumented
Declaration
Swift
public let yMS: Float
-
Undocumented
Declaration
Swift
public let zMS: Float
-
Initializes a new
VelocityBody
.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: VelocityBody, rhs: VelocityBody) -> Bool