mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 13:58:51 +02:00
some spacing cleanup in Head
This commit is contained in:
parent
50e062edf2
commit
9816e1d9a8
1 changed files with 43 additions and 45 deletions
|
@ -23,8 +23,7 @@
|
|||
#include "SerialInterface.h"
|
||||
#include "world.h"
|
||||
|
||||
enum eyeContactTargets
|
||||
{
|
||||
enum eyeContactTargets {
|
||||
LEFT_EYE,
|
||||
RIGHT_EYE,
|
||||
MOUTH
|
||||
|
@ -66,7 +65,7 @@ public:
|
|||
glm::vec3 getPosition() const { return _position; }
|
||||
const glm::vec3& getEyePosition() const { return _eyePosition; }
|
||||
glm::vec3 getRightDirection() const { return getOrientation() * IDENTITY_RIGHT; }
|
||||
glm::vec3 getUpDirection () const { return getOrientation() * IDENTITY_UP; }
|
||||
glm::vec3 getUpDirection() const { return getOrientation() * IDENTITY_UP; }
|
||||
glm::vec3 getFrontDirection() const { return getOrientation() * IDENTITY_FRONT; }
|
||||
|
||||
Face& getFace() { return _face; }
|
||||
|
@ -82,8 +81,7 @@ private:
|
|||
Head(const Head&);
|
||||
Head& operator= (const Head&);
|
||||
|
||||
struct Nose
|
||||
{
|
||||
struct Nose {
|
||||
glm::vec3 top;
|
||||
glm::vec3 left;
|
||||
glm::vec3 right;
|
||||
|
|
Loading…
Reference in a new issue