]> git.localhorst.tv Git - blank.git/blobdiff - src/world/Entity.hpp
get rid of angular velocity
[blank.git] / src / world / Entity.hpp
index 0a443031d13627c291586c06baec8dad4ba13a76..65e1441aa6b1407f40a50423fd7ffce2548e0514 100644 (file)
@@ -56,10 +56,6 @@ public:
                return state.Diff(other.state);
        }
 
-       /// direction is rotation axis, magnitude is speed in rad/s
-       const glm::vec3 &AngularVelocity() const noexcept { return state.ang_vel; }
-       void AngularVelocity(const glm::vec3 &v) noexcept { state.ang_vel = v; }
-
        const glm::quat &Orientation() const noexcept { return state.orient; }
        void Orientation(const glm::quat &o) noexcept { state.orient = o; }