Remove extra qualifier from function signature in MyAvatar.h

This commit is contained in:
r3tk0n 2019-01-28 15:52:18 -08:00
parent 0429280148
commit 0f45781779
2 changed files with 2 additions and 2 deletions

View file

@ -2543,7 +2543,7 @@ controller::Pose MyAvatar::getControllerPoseInAvatarFrame(controller::Action act
}
}
quat MyAvatar::getDominantHandRotation() const {
glm::quat MyAvatar::getDominantHandRotation() const {
auto hand = (getDominantHand() == DOMINANT_RIGHT_HAND) ? controller::Action::RIGHT_HAND : controller::Action::LEFT_HAND;
auto pose = getControllerPoseInAvatarFrame(hand);
return pose.rotation;

View file

@ -980,7 +980,7 @@ public:
controller::Pose getControllerPoseInSensorFrame(controller::Action action) const;
controller::Pose getControllerPoseInWorldFrame(controller::Action action) const;
controller::Pose getControllerPoseInAvatarFrame(controller::Action action) const;
quat MyAvatar::getDominantHandRotation() const;
glm::quat getDominantHandRotation() const;
bool hasDriveInput() const;