From cd7d1e2ce43cfaed340b9248b189303ec3173c77 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Thu, 5 Apr 2018 14:22:24 +0000 Subject: [Travis] Rebuilding documentation --- matrix_guide.html | 99 ------------------------------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 matrix_guide.html (limited to 'matrix_guide.html') diff --git a/matrix_guide.html b/matrix_guide.html deleted file mode 100644 index ae624f69..00000000 --- a/matrix_guide.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - -Matrix Guide - - - - - - - - - - -
-
- - - - - - - -
-
Yet Another Game Engine
-
-
- - - - - -
- All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
- - -
- -
- -
-
-
-
Matrix Guide
-
-
-

The matrix class is a templated class which implements a mathematical Matrix.

-

Usage Guide

-

The class can be instantiated

-

Example Code

-

Creating a Matrix and performing operations on it.

-

``` c++ #include <YAGE/Math/matrix.hpp>

-

int main(int, char **) { yage::Matrix<2, 2, int> mat1 {{1, 2, 3, 4}}; yage::Matrix<2, 2, int> mat2 {{5, 6, 7, 8}};

-

int dot = yage::math::dot(mat1, mat2); return 0; } ```

-
- - - - -- cgit