Struct simulation::uav::UavState [] [src]

pub struct UavState {
    pub position: [f32; 3],
    pub velocity: [f32; 3],
    pub orientation: [f32; 3],
}

The state of the uav at a particular point in time

Fields

The position of the UAV (in meters)

The velocity of the UAV (in meters/second)

The orientation of the UAV

Methods

impl UavState
[src]

Create a new UAV state object with a specified position, velocity and orientation

Trait Implementations

impl Copy for UavState
[src]

impl Clone for UavState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UavState
[src]

Formats the value using the given formatter.