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:
Diffstat (limited to 'intern/moto/intern/MT_CmMatrix4x4.cpp')
-rw-r--r--intern/moto/intern/MT_CmMatrix4x4.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/intern/moto/intern/MT_CmMatrix4x4.cpp b/intern/moto/intern/MT_CmMatrix4x4.cpp
index 7a04864e48d..4c6c40ac081 100644
--- a/intern/moto/intern/MT_CmMatrix4x4.cpp
+++ b/intern/moto/intern/MT_CmMatrix4x4.cpp
@@ -40,27 +40,6 @@ MT_CmMatrix4x4::MT_CmMatrix4x4()
Identity();
}
-
-
-MT_CmMatrix4x4::MT_CmMatrix4x4(const float value[4][4])
-{
- for (int i=0;i<4;i++)
- {
- for (int j=0;j<4;j++)
- m_V[i][j] = value[i][j];
- }
-}
-
-
-
-MT_CmMatrix4x4::MT_CmMatrix4x4(const double value[16])
-{
- for (int i=0;i<16;i++)
- m_Vflat[i] = value[i];
-}
-
-
-
MT_CmMatrix4x4::MT_CmMatrix4x4(const MT_CmMatrix4x4& other)
{
SetMatrix(other);
@@ -160,13 +139,6 @@ const double* MT_CmMatrix4x4::getPointer() const
return &m_V[0][0];
}
-
-
-void MT_CmMatrix4x4::setElem(int pos,double newvalue)
-{
- m_Vflat[pos] = newvalue;
-}
-
MT_CmMatrix4x4 MT_CmMatrix4x4::Perspective(
MT_Scalar inLeft,
MT_Scalar inRight,