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>2013-07-30 01:22:59 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-07-30 01:22:59 +0400
commitc8958eea295a7dac07b02e50b81e377545cea7a0 (patch)
tree0e58a658cf821c6315f9bd8a9dca0d2cdbf091d9 /source/blender/collada/collada_internal.h
parentc0875290bcd12904404a9faae479efa092cd5dbd (diff)
Added Scene scale calculator to UnitConverter for future usage (wip)
Diffstat (limited to 'source/blender/collada/collada_internal.h')
-rw-r--r--source/blender/collada/collada_internal.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/collada/collada_internal.h b/source/blender/collada/collada_internal.h
index 2e855764f4b..c546b13d433 100644
--- a/source/blender/collada/collada_internal.h
+++ b/source/blender/collada/collada_internal.h
@@ -50,7 +50,8 @@ private:
float x_up_mat4[4][4];
float y_up_mat4[4][4];
float z_up_mat4[4][4];
-
+ float size_mat4[4][4];
+
public:
enum UnitSystem {
@@ -79,7 +80,8 @@ public:
void mat4_to_dae_double(double out[4][4], float in[4][4]);
float(&get_rotation())[4][4];
-
+ float(&get_scale())[4][4];
+ void calculate_scale(Scene &sce);
};