mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 19:57:11 +02:00
Remove extra qualifier from function signature in MyAvatar.h
This commit is contained in:
parent
0429280148
commit
0f45781779
2 changed files with 2 additions and 2 deletions
|
@ -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 hand = (getDominantHand() == DOMINANT_RIGHT_HAND) ? controller::Action::RIGHT_HAND : controller::Action::LEFT_HAND;
|
||||||
auto pose = getControllerPoseInAvatarFrame(hand);
|
auto pose = getControllerPoseInAvatarFrame(hand);
|
||||||
return pose.rotation;
|
return pose.rotation;
|
||||||
|
|
|
@ -980,7 +980,7 @@ public:
|
||||||
controller::Pose getControllerPoseInSensorFrame(controller::Action action) const;
|
controller::Pose getControllerPoseInSensorFrame(controller::Action action) const;
|
||||||
controller::Pose getControllerPoseInWorldFrame(controller::Action action) const;
|
controller::Pose getControllerPoseInWorldFrame(controller::Action action) const;
|
||||||
controller::Pose getControllerPoseInAvatarFrame(controller::Action action) const;
|
controller::Pose getControllerPoseInAvatarFrame(controller::Action action) const;
|
||||||
quat MyAvatar::getDominantHandRotation() const;
|
glm::quat getDominantHandRotation() const;
|
||||||
|
|
||||||
bool hasDriveInput() const;
|
bool hasDriveInput() const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue