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 10:23:05 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2019-06-03 00:00:56 +0300
commit122b9478c66e13fa3c14da606cfa92528acd0b87 (patch)
treed2105c15b7b67aac115b3e1271dbe8996433d1ec /source/blender/collada/ArmatureExporter.cpp
parent70bc179c45414bd426af49c883fcab1e3bebabf8 (diff)
refactor collada: replace bc_sanitize_mat() by static class method in BCMatrix
Diffstat (limited to 'source/blender/collada/ArmatureExporter.cpp')
-rw-r--r--source/blender/collada/ArmatureExporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/ArmatureExporter.cpp b/source/blender/collada/ArmatureExporter.cpp
index ed645ee5001..84979cc4ca4 100644
--- a/source/blender/collada/ArmatureExporter.cpp
+++ b/source/blender/collada/ArmatureExporter.cpp
@@ -315,7 +315,7 @@ void ArmatureExporter::add_bone_transform(Object *ob_arm, Bone *bone, COLLADASW:
}
if (this->export_settings.get_limit_precision()) {
- bc_sanitize_mat(mat, LIMITTED_PRECISION);
+ BCMatrix::sanitize(mat, LIMITTED_PRECISION);
}
TransformWriter::add_joint_transform(node, mat, NULL, this->export_settings, has_restmat);