Remove unused vars in Face class.

This commit is contained in:
Hifi Test Account 2013-08-07 13:54:38 -07:00
parent 5f90e1a4e9
commit cd8047b01a
2 changed files with 0 additions and 6 deletions

View file

@ -63,9 +63,6 @@ void Face::setFrameFromWebcam() {
_textureSize = webcam->getTextureSize();
_textureRect = webcam->getFaceRect();
_aspectRatio = webcam->getAspectRatio();
_facePosition = webcam->getEstimatedPosition();
_faceRotation = webcam->getEstimatedRotation();
} else {
clearFrame();
}

View file

@ -61,9 +61,6 @@ private:
cv::Size2f _textureSize;
cv::RotatedRect _textureRect;
float _aspectRatio;
glm::vec3 _facePosition;
glm::vec3 _faceRotation;
vpx_codec_ctx_t _colorCodec;
vpx_codec_ctx_t _depthCodec;