Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2019-05-28 23:08:23 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2019-06-03 00:00:57 +0300
commit0bcf29b8cd9dc2c99f3f63c7761fe9e1223641ef (patch)
treeb16f5aa57f4204004d2ff97275cf3eb4cd39b18d /source/blender/collada/BCMath.h
parentd04622e427c2e017fd6ea0c9a915168cee40c798 (diff)
refactor: use Quat and BCQuat instead of float[4] arrays for Quaternions (wip)
Diffstat (limited to 'source/blender/collada/BCMath.h')
-rw-r--r--source/blender/collada/BCMath.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/collada/BCMath.h b/source/blender/collada/BCMath.h
index 00e8f24c970..cc2ce7ce315 100644
--- a/source/blender/collada/BCMath.h
+++ b/source/blender/collada/BCMath.h
@@ -52,6 +52,9 @@ class BCQuat {
{
return q;
}
+
+ void rotate_to(Matrix &mat_to);
+
};
class BCMatrix {