aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/math/LinearTransformation.h
diff options
context:
space:
mode:
Diffstat (limited to 'meowpp/math/LinearTransformation.h')
-rw-r--r--meowpp/math/LinearTransformation.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/meowpp/math/LinearTransformation.h b/meowpp/math/LinearTransformation.h
index f51630e..0dc3735 100644
--- a/meowpp/math/LinearTransformation.h
+++ b/meowpp/math/LinearTransformation.h
@@ -47,7 +47,7 @@ protected:
Transformation<Scalar>(b),
matrix_(b.matrix_) {
}
-
+
/*!
* @brief Copy settings, matrix from another LinearTransformation
*
@@ -58,7 +58,7 @@ protected:
matrix_.copyFrom(b.matrix_);
return *this;
}
-
+
/*!
* @brief Reference settings, matrix from another LinearTransformation
*
@@ -69,7 +69,7 @@ protected:
matrix_.referenceFrom(b.matrix_);
return *this;
}
-
+
/*!
* @brief setup the matrix
*/
@@ -77,14 +77,14 @@ protected:
matrix_.copyFrom(m);
return matrix();
}
-
+
public:
/*!
* Destructor
*/
virtual ~LinearTransformation() {
}
-
+
/*!
* @brief Return the matrix form of this transformation
*
@@ -93,7 +93,7 @@ public:
virtual Matrix<Scalar> const& matrix() const {
return matrix_;
}
-
+
/*!
* @brief Return the inverse of the matrix form of this transformate
*