21 lines
554 B
C++
Executable file
21 lines
554 B
C++
Executable file
#include "MatrixWithExactSync.h"
|
|
|
|
FMatrixWithExactSync::FMatrixWithExactSync() {
|
|
this->Values[0] = 0.00f;
|
|
this->Values[1] = 0.00f;
|
|
this->Values[2] = 0.00f;
|
|
this->Values[3] = 0.00f;
|
|
this->Values[4] = 0.00f;
|
|
this->Values[5] = 0.00f;
|
|
this->Values[6] = 0.00f;
|
|
this->Values[7] = 0.00f;
|
|
this->Values[8] = 0.00f;
|
|
this->Values[9] = 0.00f;
|
|
this->Values[10] = 0.00f;
|
|
this->Values[11] = 0.00f;
|
|
this->Values[12] = 0.00f;
|
|
this->Values[13] = 0.00f;
|
|
this->Values[14] = 0.00f;
|
|
this->Values[15] = 0.00f;
|
|
}
|
|
|