All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codeminders.ardrone.commands.MoveCommand Maven / Gradle / Ivy

The newest version!
package com.codeminders.ardrone.commands;

public class MoveCommand extends PCMDCommand
{
    public MoveCommand(boolean combined_yaw_enabled,
                       float   left_right_tilt,
                       float   front_back_tilt,
                       float   vertical_speed,
                       float   angular_speed)
    {
        super(false);
        this.combined_yaw_enabled = combined_yaw_enabled;
        this.left_right_tilt      = left_right_tilt;
        this.front_back_tilt      = front_back_tilt;
        this.vertical_speed       = vertical_speed;
        this.angular_speed        = angular_speed;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy