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:
authorCampbell Barton <ideasman42@gmail.com>2011-11-06 19:17:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-06 19:17:43 +0400
commitec3b0c6a968210512e0c36e1e62eefcbe0cf1ea0 (patch)
tree8539e5cf67d14b2256d3171ffb3d1f22d371bf82 /source/gameengine/Converter/BL_ActionActuator.cpp
parent0634d8a7458c9fed536f3240edf610587ec63067 (diff)
misc macro --> bli math lib functions
Diffstat (limited to 'source/gameengine/Converter/BL_ActionActuator.cpp')
-rw-r--r--source/gameengine/Converter/BL_ActionActuator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/Converter/BL_ActionActuator.cpp b/source/gameengine/Converter/BL_ActionActuator.cpp
index a6d02db8cea..abc45293542 100644
--- a/source/gameengine/Converter/BL_ActionActuator.cpp
+++ b/source/gameengine/Converter/BL_ActionActuator.cpp
@@ -445,9 +445,9 @@ KX_PYMETHODDEF_DOC(BL_ActionActuator, setChannel,
pchan= get_pose_channel(m_userpose, string); // adds the channel if its not there.
if(pchan) {
- VECCOPY (pchan->loc, matrix[3]);
- mat4_to_size( pchan->size,matrix);
- mat4_to_quat( pchan->quat,matrix);
+ copy_v3_v3(pchan->loc, matrix[3]);
+ mat4_to_size(pchan->size, matrix);
+ mat4_to_quat(pchan->quat, matrix);
}
}
else {