overte-thingvellir/head.h
2012-10-13 10:46:15 -07:00

59 lines
No EOL
1.2 KiB
C++

//
// head.h
// interface
//
// Created by Philip Rosedale on 9/11/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#ifndef interface_head_h
#define interface_head_h
#include <iostream>
#include "field.h"
#include "world.h"
#include <GLUT/glut.h>
class Head {
float Pitch;
float Yaw;
float Roll;
float PitchRate;
float YawRate;
float RollRate;
float EyeballPitch[2];
float EyeballYaw[2];
float EyebrowPitch[2];
float EyebrowRoll[2];
float interPupilDistance;
float interBrowDistance;
float NominalPupilSize;
float PupilSize;
float MouthPitch;
float MouthYaw;
float MouthWidth;
float MouthHeight;
float PitchTarget;
float YawTarget;
float NoiseEnvelope;
float PupilConverge;
public:
Head(void);
void reset();
void setPitch(float p) {Pitch = p; }
void setYaw(float y) {Yaw = y; }
void addPitch(float p) {Pitch -= p; }
void addYaw(float y){Yaw -= y; }
void getPitch(float);
void render();
void simulate(float);
int transmit(char*);
void receive(float);
void SetNewHeadTarget(float, float);
};
#endif