diff options
| author | IAmActuallyCthulhu <iamactuallycthulhu@gmail.com> | 2019-08-10 07:28:17 -0500 |
|---|---|---|
| committer | IAmActuallyCthulhu <iamactuallycthulhu@gmail.com> | 2019-08-12 04:26:38 -0500 |
| commit | 82b9557803f33521694587b6014645a05a814ecb (patch) | |
| tree | 21d25433b59ad6835f1ab8214d3f763b3531a069 /core/math | |
| parent | b18747af4b9e7b1fbfb35a478556eba6328ccce5 (diff) | |
Remove redundant author doc comments
Diffstat (limited to 'core/math')
| -rw-r--r-- | core/math/basis.h | 4 | ||||
| -rw-r--r-- | core/math/bsp_tree.h | 4 | ||||
| -rw-r--r-- | core/math/camera_matrix.h | 4 | ||||
| -rw-r--r-- | core/math/geometry.h | 4 | ||||
| -rw-r--r-- | core/math/octree.h | 4 | ||||
| -rw-r--r-- | core/math/quat.h | 4 | ||||
| -rw-r--r-- | core/math/transform.h | 4 |
7 files changed, 1 insertions, 27 deletions
diff --git a/core/math/basis.h b/core/math/basis.h index d3adad3d90..053effda69 100644 --- a/core/math/basis.h +++ b/core/math/basis.h @@ -36,10 +36,6 @@ #include "core/math/quat.h" -/** - @author Juan Linietsky <reduzio@gmail.com> -*/ - class Basis { public: Vector3 elements[3]; diff --git a/core/math/bsp_tree.h b/core/math/bsp_tree.h index a7a3697990..90b5e8322a 100644 --- a/core/math/bsp_tree.h +++ b/core/math/bsp_tree.h @@ -38,9 +38,7 @@ #include "core/pool_vector.h" #include "core/variant.h" #include "core/vector.h" -/** - @author Juan Linietsky <reduzio@gmail.com> -*/ + class BSP_Tree { public: enum { diff --git a/core/math/camera_matrix.h b/core/math/camera_matrix.h index 3bcf48f5da..63cc88553d 100644 --- a/core/math/camera_matrix.h +++ b/core/math/camera_matrix.h @@ -34,10 +34,6 @@ #include "core/math/rect2.h" #include "core/math/transform.h" -/** - @author Juan Linietsky <reduzio@gmail.com> -*/ - struct CameraMatrix { enum Planes { diff --git a/core/math/geometry.h b/core/math/geometry.h index e4f3ff799e..a32ed2f56b 100644 --- a/core/math/geometry.h +++ b/core/math/geometry.h @@ -41,10 +41,6 @@ #include "core/print_string.h" #include "core/vector.h" -/** - @author Juan Linietsky <reduzio@gmail.com> -*/ - class Geometry { Geometry(); diff --git a/core/math/octree.h b/core/math/octree.h index d6fc9776bc..e752e10abc 100644 --- a/core/math/octree.h +++ b/core/math/octree.h @@ -38,10 +38,6 @@ #include "core/print_string.h" #include "core/variant.h" -/** - @author Juan Linietsky <reduzio@gmail.com> -*/ - typedef uint32_t OctreeElementID; #define OCTREE_ELEMENT_INVALID_ID 0 diff --git a/core/math/quat.h b/core/math/quat.h index 8ed2fa7cc2..3d6602e466 100644 --- a/core/math/quat.h +++ b/core/math/quat.h @@ -38,10 +38,6 @@ #include "core/math/math_funcs.h" #include "core/ustring.h" -/** - @author Juan Linietsky <reduzio@gmail.com> -*/ - class Quat { public: real_t x, y, z, w; diff --git a/core/math/transform.h b/core/math/transform.h index 2f43f6b035..8f8d20c067 100644 --- a/core/math/transform.h +++ b/core/math/transform.h @@ -35,10 +35,6 @@ #include "core/math/basis.h" #include "core/math/plane.h" -/** - @author Juan Linietsky <reduzio@gmail.com> -*/ - class Transform { public: Basis basis; |