[DOC] doc error after correct build

This commit is contained in:
Edouard DUPIN 2016-04-04 22:24:50 +02:00
parent 57c20d0aae
commit dc87e2a7d5
3 changed files with 1 additions and 16 deletions

View File

@ -28,7 +28,7 @@ ETK is written in C++.
Are there any licensing restrictions?
-------------------------------------
ETK is **FREE software** and //all sub-library are FREE and staticly linkable !!!//
ETK is **FREE software** and _all sub-library are FREE and staticly linkable !!!_
License (APACHE-2.0)

View File

@ -173,12 +173,6 @@ namespace etk {
* @return The inverted matrix.
*/
void invert();
friend Matrix2 mat2Rotate(float);
friend Matrix2 mat2Scale(const vec2&);
friend Matrix2 mat2Scale(float);
friend Matrix2 mat2Translate(const vec2&);
friend Matrix2 mat2Skew(const vec2&);
friend std::ostream& operator <<(std::ostream&, const etk::Matrix2&);
};
/**
* @brief Create a matrix 2D with a simple rotation

View File

@ -188,15 +188,6 @@ namespace etk {
* @return The inverted matrix.
*/
Matrix4 invert();
friend etk::Matrix4 etk::matFrustum(float, float, float, float, float, float);
friend etk::Matrix4 etk::matPerspective(float, float, float, float);
friend etk::Matrix4 etk::matOrtho(float, float, float, float, float, float);
friend etk::Matrix4 etk::matTranslate(vec3);
friend etk::Matrix4 etk::matScale(vec3);
friend etk::Matrix4 etk::matRotate(vec3, float);
friend etk::Matrix4 etk::matRotate2(vec3);
friend etk::Matrix4 etk::matLookAt(const vec3&, const vec3&, const vec3&);
friend std::ostream& operator <<(std::ostream&, const etk::Matrix4&);
};
/**
* @brief Create projection matrix with the box parameter (camera view in -z axis)