mirror of
https://github.com/brendanhaines/RasPi.git
synced 2024-11-09 16:44:40 -07:00
removes 3d orientation representation from GroundStation.java
This commit is contained in:
parent
c5390acbe0
commit
5bc910846c
|
@ -23,8 +23,6 @@ class GroundStation implements ActionListener {
|
|||
private JTabbedPane tabbedPane;
|
||||
/** motor testing panel */
|
||||
private MotorTestPanel motorTestPanel;
|
||||
/** displays visual representation of copter orientation */
|
||||
private Display3d orientationPanel;
|
||||
/** displays visual representation of control positions */
|
||||
private DisplayController controllerPanel;
|
||||
|
||||
|
@ -52,9 +50,7 @@ class GroundStation implements ActionListener {
|
|||
|
||||
controllerPanel = new DisplayController( receiveContent );
|
||||
tabbedPane.add( controllerPanel, "Controller" );
|
||||
|
||||
orientationPanel = new Display3d( receiveContent );
|
||||
tabbedPane.add( orientationPanel, "Orientation" );
|
||||
connectPanel.addActionListener( controllerPanel );
|
||||
|
||||
motorTestPanel = new MotorTestPanel( sendContent );
|
||||
motorTestPanel.setEnabled( false );
|
||||
|
@ -65,8 +61,6 @@ class GroundStation implements ActionListener {
|
|||
|
||||
mainWindow.pack();
|
||||
mainWindow.setVisible( true );
|
||||
|
||||
sendContent.orientation = true;
|
||||
}
|
||||
|
||||
public void disableMotors() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user