X-Git-Url: http://git.localhorst.tv/?p=blobs.git;a=blobdiff_plain;f=src%2Fworld%2FBody.hpp;h=1e32e6d020a41d71392d4f7ce68865aba6d96aaf;hp=6f85efd97b4946db46f224ef143e9b91ea1ec1b5;hb=f8c0f8706e51450ee0e87a548ccf3a66ee9f0db3;hpb=23f1f41fbff03520bb291e42b0407e0ca0bd4cc9 diff --git a/src/world/Body.hpp b/src/world/Body.hpp index 6f85efd..1e32e6d 100644 --- a/src/world/Body.hpp +++ b/src/world/Body.hpp @@ -61,9 +61,6 @@ public: Orbit &GetOrbit() noexcept { return orbit; } const Orbit &GetOrbit() const noexcept { return orbit; } - const glm::dvec2 &SurfaceTilt() const noexcept { return surface_tilt; } - void SurfaceTilt(const glm::dvec2 &t) noexcept { surface_tilt = t; } - const glm::dvec2 &AxialTilt() const noexcept { return axis_tilt; } void AxialTilt(const glm::dvec2 &t) noexcept { axis_tilt = t; } @@ -123,7 +120,6 @@ private: double mass; double radius; Orbit orbit; - glm::dvec2 surface_tilt; glm::dvec2 axis_tilt; double rotation; double angular;