Remove dead variables.
Modified Files: ./src/Model/acmodel.cxx ./src/Model/acmodel.hxx
This commit is contained in:
parent
86d11cffce
commit
173af5d55f
2 changed files with 2 additions and 7 deletions
|
@ -33,9 +33,7 @@
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
FGAircraftModel::FGAircraftModel ()
|
FGAircraftModel::FGAircraftModel ()
|
||||||
: _aircraft(0),
|
: _aircraft(0)
|
||||||
_nearplane(0.10f),
|
|
||||||
_farplane(1000.0f)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#// model.hxx - manage a 3D aircraft model.
|
// model.hxx - manage a 3D aircraft model.
|
||||||
// Written by David Megginson, started 2002.
|
// Written by David Megginson, started 2002.
|
||||||
//
|
//
|
||||||
// This file is in the Public Domain, and comes with no warranty.
|
// This file is in the Public Domain, and comes with no warranty.
|
||||||
|
@ -43,9 +43,6 @@ public:
|
||||||
private:
|
private:
|
||||||
|
|
||||||
SGModelPlacement * _aircraft;
|
SGModelPlacement * _aircraft;
|
||||||
float _nearplane;
|
|
||||||
float _farplane;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // __ACMODEL_HXX
|
#endif // __ACMODEL_HXX
|
||||||
|
|
Loading…
Add table
Reference in a new issue