Browse Source

Math: doc++

pull/59/head
Vladimír Vondruš 12 years ago
parent
commit
a27c61c38e
  1. 9
      src/Magnum/Math/Matrix3.h
  2. 9
      src/Magnum/Math/Matrix4.h

9
src/Magnum/Math/Matrix3.h

@ -35,13 +35,12 @@
namespace Magnum { namespace Math { namespace Magnum { namespace Math {
/** /**
@brief 3x3 matrix @brief 2D transformation matrix
@tparam T Underlying data type @tparam T Underlying data type
Represents 2D transformation. See @ref matrix-vector and @ref transformations See @ref matrix-vector and @ref transformations for brief introduction.
for brief introduction. @see @ref Magnum::Matrix3, @ref Magnum::Matrix3d, @ref Matrix3x3,
@see @ref Magnum::Matrix3, @ref Magnum::Matrix3d, @ref DualComplex, @ref DualComplex, @ref SceneGraph::MatrixTransformation2D
@ref SceneGraph::MatrixTransformation2D
@configurationvalueref{Magnum::Math::Matrix3} @configurationvalueref{Magnum::Math::Matrix3}
*/ */
template<class T> class Matrix3: public Matrix<3, T> { template<class T> class Matrix3: public Matrix<3, T> {

9
src/Magnum/Math/Matrix4.h

@ -40,13 +40,12 @@
namespace Magnum { namespace Math { namespace Magnum { namespace Math {
/** /**
@brief 4x4 matrix @brief 3D transformation matrix
@tparam T Underlying data type @tparam T Underlying data type
Represents 3D transformation. See @ref matrix-vector and @ref transformations See @ref matrix-vector and @ref transformations for brief introduction.
for brief introduction. @see @ref Magnum::Matrix4, @ref Magnum::Matrix4d, @ref Matrix4x4,
@see @ref Magnum::Matrix4, @ref Magnum::Matrix4d, @ref DualQuaternion, @ref DualQuaternion, @ref SceneGraph::MatrixTransformation3D
@ref SceneGraph::MatrixTransformation3D
@configurationvalueref{Magnum::Math::Matrix4} @configurationvalueref{Magnum::Math::Matrix4}
*/ */
template<class T> class Matrix4: public Matrix<4, T> { template<class T> class Matrix4: public Matrix<4, T> {

Loading…
Cancel
Save