33 lines
447 B
C++
Executable File
33 lines
447 B
C++
Executable File
//
|
|
// Math.cpp
|
|
// amoeba
|
|
//
|
|
// Created by Timothy Prepscius on 12/30/16.
|
|
// Copyright © 2016 Timothy Prepscius. All rights reserved.
|
|
//
|
|
|
|
#include "Matrix3.hpp"
|
|
|
|
namespace tjp {
|
|
namespace core {
|
|
namespace math {
|
|
|
|
|
|
template<>
|
|
const Matrix3<double> Matrix3<double>::Zero {
|
|
0, 0, 0,
|
|
0, 0, 0,
|
|
0, 0, 0
|
|
};
|
|
|
|
template<>
|
|
const Matrix3<double> Matrix3<double>::Identity {
|
|
1, 0, 0,
|
|
0, 1, 0,
|
|
0, 0, 1
|
|
};
|
|
|
|
} // namespace
|
|
} // namespace
|
|
} // namespace
|