From: curt Date: Wed, 25 Oct 2000 22:59:02 +0000 (+0000) Subject: Continued FGViewer cleanups. FGViewer is now a base class so that we can X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0175b4cd253a69f22cc28f8f42fc019af26641e5;p=flightgear.git Continued FGViewer cleanups. FGViewer is now a base class so that we can derive specific viewer classes from it. Here's what I currently have in mind: FGViewer | |-> FGViewerPRH (current system with orientation specified in | LaRCsim Euler angle convention) | |-> FGViewerLookAt Feed in a position, view direction, and up vector | |-> FGViewerHPR (similar to PRH, but using ssg hpr euler angle | convention) |-> others? --- diff --git a/src/Cockpit/panel.cxx b/src/Cockpit/panel.cxx index 3e371f43e..95de80c6c 100644 --- a/src/Cockpit/panel.cxx +++ b/src/Cockpit/panel.cxx @@ -35,6 +35,7 @@ #include #include
#include +#include