]> git.mxchange.org Git - flightgear.git/blobdiff - src/GUI/sgVec3Slider.hxx
Moved some of the low level scene graph construction code over to simgear.
[flightgear.git] / src / GUI / sgVec3Slider.hxx
index 8772dc6ccd312d537b57d118559e4680c82b3c77..58186d687498827a44568179c1ca95dbacceccb9 100644 (file)
@@ -25,43 +25,3 @@ void PilotOffsetSet( int opt, float setting);
 float PilotOffsetGetSetting( int opt );
 
 #endif // _VEC3_SLIDER_H
-
-/* binding functions for chase view offset */
-
-static void
-setPilotXOffset (float value)
-{
-       PilotOffsetSet(0, value);
-}
-
-static float
-getPilotXOffset ()
-{
-       return( PilotOffsetGetSetting(0) );
-}
-
-
-static void
-setPilotYOffset (float value)
-{
-       PilotOffsetSet(1, value);
-}
-
-static float
-getPilotYOffset ()
-{
-       return( PilotOffsetGetSetting(1) );
-}
-
-
-static void
-setPilotZOffset (float value)
-{
-       PilotOffsetSet(2, value);
-}
-
-static float
-getPilotZOffset ()
-{
-       return( PilotOffsetGetSetting(2) );
-}