summaryrefslogtreecommitdiffstats
path: root/src/2geom/numeric
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-04-01 20:26:37 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-04-02 20:10:02 +0000
commitc08df128f0fdf5195eecc91e77ba72b0c60b6a47 (patch)
tree0caef8c7641aee795b028099d2047b55da7cbd5e /src/2geom/numeric
parentUpdate CMakeLists.txt (diff)
downloadinkscape-c08df128f0fdf5195eecc91e77ba72b0c60b6a47.tar.gz
inkscape-c08df128f0fdf5195eecc91e77ba72b0c60b6a47.zip
2geom: update to 7e3b3f75023c7c69fd085574cfaa46de0213bbbc
Diffstat (limited to 'src/2geom/numeric')
-rw-r--r--src/2geom/numeric/fitting-model.h4
-rw-r--r--src/2geom/numeric/matrix.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/2geom/numeric/fitting-model.h b/src/2geom/numeric/fitting-model.h
index b2ca92ad8..0316f578d 100644
--- a/src/2geom/numeric/fitting-model.h
+++ b/src/2geom/numeric/fitting-model.h
@@ -145,7 +145,7 @@ class LinearFittingModelWithFixedTerms
// incomplete model, it can be inherited to make up different kinds of
// instance type; the raw data is a vector of coefficients of a polynomial
-// rapresented in standard power basis
+// represented in standard power basis
template< typename InstanceType >
class LFMPowerBasis
: public LinearFittingModel<double, double, InstanceType>
@@ -201,7 +201,7 @@ class LFMPoly
// incomplete model, it can be inherited to make up different kinds of
// instance type; the raw data is a vector of coefficients of a polynomial
-// rapresented in standard power basis with leading term coefficient equal to 1
+// represented in standard power basis with leading term coefficient equal to 1
template< typename InstanceType >
class LFMNormalizedPowerBasis
: public LinearFittingModelWithFixedTerms<double, double, InstanceType>
diff --git a/src/2geom/numeric/matrix.h b/src/2geom/numeric/matrix.h
index ddca35cd6..5cebf1070 100644
--- a/src/2geom/numeric/matrix.h
+++ b/src/2geom/numeric/matrix.h
@@ -320,7 +320,7 @@ class Matrix: public detail::MatrixImpl
typedef detail::MatrixImpl base_type;
public:
- // the matrix is not inizialized
+ // the matrix is not initialized
Matrix(size_t n1, size_t n2)
{
m_rows = n1;