mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 18:24:08 +02:00
Fix typos noticed in passing
This commit is contained in:
parent
1bfb941057
commit
4e9fc02af5
2 changed files with 3 additions and 3 deletions
|
@ -113,8 +113,8 @@ float Quat::dot(const glm::quat& q1, const glm::quat& q2) {
|
||||||
return glm::dot(q1, q2);
|
return glm::dot(q1, q2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Quat::print(const QString& lable, const glm::quat& q) {
|
void Quat::print(const QString& label, const glm::quat& q) {
|
||||||
qCDebug(scriptengine) << qPrintable(lable) << q.x << "," << q.y << "," << q.z << "," << q.w;
|
qCDebug(scriptengine) << qPrintable(label) << q.x << "," << q.y << "," << q.z << "," << q.w;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Quat::equal(const glm::quat& q1, const glm::quat& q2) {
|
bool Quat::equal(const glm::quat& q1, const glm::quat& q2) {
|
||||||
|
|
|
@ -46,7 +46,7 @@ public slots:
|
||||||
glm::quat slerp(const glm::quat& q1, const glm::quat& q2, float alpha);
|
glm::quat slerp(const glm::quat& q1, const glm::quat& q2, float alpha);
|
||||||
glm::quat squad(const glm::quat& q1, const glm::quat& q2, const glm::quat& s1, const glm::quat& s2, float h);
|
glm::quat squad(const glm::quat& q1, const glm::quat& q2, const glm::quat& s1, const glm::quat& s2, float h);
|
||||||
float dot(const glm::quat& q1, const glm::quat& q2);
|
float dot(const glm::quat& q1, const glm::quat& q2);
|
||||||
void print(const QString& lable, const glm::quat& q);
|
void print(const QString& label, const glm::quat& q);
|
||||||
bool equal(const glm::quat& q1, const glm::quat& q2);
|
bool equal(const glm::quat& q1, const glm::quat& q2);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue