Files
core_math/tjp/core/math/Matrix3.cpp
Timothy Prepscius 0807c0286a flatten 20260225
2026-02-25 12:36:47 -05:00

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