X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWeatherCM%2FFGWindItem.h;h=9aa6ab39577d9c6b29a72b51960429a203214ebd;hb=7d3448294bc7486af3f4c1f0ff5c8493b03ffc90;hp=3142de0f2ba52f6a73a9a80521a54edfd908e291;hpb=485230b443de22c97d5c4ddfda98598fb52ce98a;p=flightgear.git diff --git a/src/WeatherCM/FGWindItem.h b/src/WeatherCM/FGWindItem.h index 3142de0f2..9aa6ab395 100644 --- a/src/WeatherCM/FGWindItem.h +++ b/src/WeatherCM/FGWindItem.h @@ -99,6 +99,10 @@ public: WeatherPrecision y(void) const { return value[1]; }; WeatherPrecision z(void) const { return value[2]; }; + void x(const WeatherPrecision x) { value[0] = x; }; + void y(const WeatherPrecision y) { value[1] = y; }; + void z(const WeatherPrecision z) { value[2] = z; }; + FGWindItem& operator*= (const WeatherPrecision arg); FGWindItem& operator+= (const FGWindItem& arg); FGWindItem& operator-= (const FGWindItem& arg);