YASim Model move one-liner to header.
This commit is contained in:
parent
3457c3c61f
commit
8bd8d5f163
2 changed files with 1 additions and 6 deletions
|
@ -203,11 +203,6 @@ void Model::setGroundEffect(const float* pos, float span, float mul)
|
||||||
_groundEffect = mul;
|
_groundEffect = mul;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Model::setStandardAtmosphere(float altitude)
|
|
||||||
{
|
|
||||||
_atmo.setStandard(altitude);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Model::updateGround(State* s)
|
void Model::updateGround(State* s)
|
||||||
{
|
{
|
||||||
float dummy[3];
|
float dummy[3];
|
||||||
|
|
|
@ -70,7 +70,7 @@ public:
|
||||||
void setGroundEffect(const float* pos, float span, float mul);
|
void setGroundEffect(const float* pos, float span, float mul);
|
||||||
void setWind(float* wind) { Math::set3(wind, _wind); }
|
void setWind(float* wind) { Math::set3(wind, _wind); }
|
||||||
void setAtmosphere(Atmosphere a) { _atmo = a; };
|
void setAtmosphere(Atmosphere a) { _atmo = a; };
|
||||||
void setStandardAtmosphere(float altitude);
|
void setStandardAtmosphere(float altitude) { _atmo.setStandard(altitude); };
|
||||||
|
|
||||||
void updateGround(State* s);
|
void updateGround(State* s);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue