[Bf-blender-cvs] [0e7451dc3de] collada: Renamed the file BCMatrix.* to BCSampleData.*

Gaia Clary noreply at git.blender.org
Wed Mar 28 21:31:00 CEST 2018


Commit: 0e7451dc3de9a8656b381d9e38322a4a3485fb0d
Author: Gaia Clary
Date:   Fri Mar 23 11:31:11 2018 +0100
Branches: collada
https://developer.blender.org/rB0e7451dc3de9a8656b381d9e38322a4a3485fb0d

Renamed the file BCMatrix.* to BCSampleData.*

BCMatrix is still used, but i intend to setup a class hierarchy
wher BCSampleData is the parent of all sampled data in the
BCAnimationCurveContainer (wip)

===================================================================

M	source/blender/collada/BCAnimationCurve.h
M	source/blender/collada/BCAnimationCurveContainer.h
R099	source/blender/collada/BCMatrix.cpp	source/blender/collada/BCSampleData.cpp
R100	source/blender/collada/BCMatrix.h	source/blender/collada/BCSampleData.h
M	source/blender/collada/CMakeLists.txt

===================================================================

diff --git a/source/blender/collada/BCAnimationCurve.h b/source/blender/collada/BCAnimationCurve.h
index 08bf02e37f3..004e15bf8a9 100644
--- a/source/blender/collada/BCAnimationCurve.h
+++ b/source/blender/collada/BCAnimationCurve.h
@@ -29,7 +29,7 @@
 #define __BCANIMATION_CURVE_H__
 
 #include "collada_utils.h"
-#include "BCMatrix.h"
+#include "BCSampleData.h"
 
 extern "C"
 {
diff --git a/source/blender/collada/BCAnimationCurveContainer.h b/source/blender/collada/BCAnimationCurveContainer.h
index e19bf2c4cf3..63ffadcff39 100644
--- a/source/blender/collada/BCAnimationCurveContainer.h
+++ b/source/blender/collada/BCAnimationCurveContainer.h
@@ -29,7 +29,7 @@
 #define __ANIMATION_CURVE_CONTAINER_H__
 
 #include "BCAnimationCurve.h"
-#include "BCMatrix.h"
+#include "BCSampleData.h"
 
 extern "C" {
 #include "BKE_action.h"
diff --git a/source/blender/collada/BCMatrix.cpp b/source/blender/collada/BCSampleData.cpp
similarity index 99%
rename from source/blender/collada/BCMatrix.cpp
rename to source/blender/collada/BCSampleData.cpp
index d5b7cf484fd..6114d99e83e 100644
--- a/source/blender/collada/BCMatrix.cpp
+++ b/source/blender/collada/BCSampleData.cpp
@@ -25,7 +25,7 @@
 * ***** END GPL LICENSE BLOCK *****
 */
 
-#include "BCMatrix.h"
+#include "BCSampleData.h"
 #include "collada_utils.h"
 
 BCMatrix::BCMatrix()
diff --git a/source/blender/collada/BCMatrix.h b/source/blender/collada/BCSampleData.h
similarity index 100%
rename from source/blender/collada/BCMatrix.h
rename to source/blender/collada/BCSampleData.h
diff --git a/source/blender/collada/CMakeLists.txt b/source/blender/collada/CMakeLists.txt
index 61101e980a0..14a9587f7e3 100644
--- a/source/blender/collada/CMakeLists.txt
+++ b/source/blender/collada/CMakeLists.txt
@@ -53,7 +53,7 @@ set(SRC
 	ArmatureImporter.cpp
 	BCAnimationCurve.cpp
 	BCAnimationCurveContainer.cpp
-	BCMatrix.cpp
+	BCSampleData.cpp
 	CameraExporter.cpp
 	ControllerExporter.cpp
 	DocumentExporter.cpp
@@ -85,7 +85,7 @@ set(SRC
 	ArmatureImporter.h
 	BCAnimationCurve.h
 	BCAnimationCurveContainer.h
-	BCMatrix.h
+	BCSampleData.h
 	CameraExporter.h
 	ControllerExporter.h
 	DocumentExporter.h



More information about the Bf-blender-cvs mailing list