This commit is contained in:
Seth Alves 2015-10-15 14:55:17 -07:00
parent 487131dde1
commit 462918ffcf
2 changed files with 0 additions and 9 deletions

View file

@ -183,8 +183,6 @@ public:
glm::quat getCustomListenOrientation() { return _customListenOrientation; }
void setCustomListenOrientation(glm::quat customListenOrientation) { _customListenOrientation = customListenOrientation; }
virtual RigPointer getRig() const { return _rig; }
public slots:
void increaseSize();
void decreaseSize();

View file

@ -50,13 +50,6 @@ void Rig::HeadParameters::dump() const {
qCDebug(animation, " isTalking = %s", isTalking ? "true" : "false");
}
// QString Rig::HeadParameters::dumpJoint(int jointIndex) const {
// QString out = "";
// out += ...;
// JointState& state = _jointStates[i];
// int parentIndex = state.getParentIndex();
// }
void insertSorted(QList<AnimationHandlePointer>& handles, const AnimationHandlePointer& handle) {
for (QList<AnimationHandlePointer>::iterator it = handles.begin(); it != handles.end(); it++) {
if (handle->getPriority() > (*it)->getPriority()) {