#include #include #include #include #include import Crafter.Math; using namespace Crafter; int main() { Matrix matrix( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1 ); Vector test(0, 0, 0, 1); Vector result = matrix*test; std::cout << result.ToString() << std::endl; }