summaryrefslogtreecommitdiffstats
path: root/src/libnr/nr-matrix-scale-ops.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2008-03-01 22:24:40 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2008-03-01 22:24:40 +0000
commit9e0ac2b4acbb628a7ff51e779b5396569aed8269 (patch)
tree872398fd3d7e4da46eb57e9cea07eabacf3ab0f2 /src/libnr/nr-matrix-scale-ops.cpp
parent* [INTL: zh_CN] (trunk) Simplified Chinese update by Liu Xiaoqin (closes: #19... (diff)
downloadinkscape-9e0ac2b4acbb628a7ff51e779b5396569aed8269.tar.gz
inkscape-9e0ac2b4acbb628a7ff51e779b5396569aed8269.zip
remove assert_close
(bzr r4916)
Diffstat (limited to 'src/libnr/nr-matrix-scale-ops.cpp')
-rw-r--r--src/libnr/nr-matrix-scale-ops.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libnr/nr-matrix-scale-ops.cpp b/src/libnr/nr-matrix-scale-ops.cpp
index 90cbaf585..0079d3f76 100644
--- a/src/libnr/nr-matrix-scale-ops.cpp
+++ b/src/libnr/nr-matrix-scale-ops.cpp
@@ -8,7 +8,6 @@ operator/(NR::Matrix const &m, NR::scale const &s)
ret[0] /= s[X]; ret[1] /= s[Y];
ret[2] /= s[X]; ret[3] /= s[Y];
ret[4] /= s[X]; ret[5] /= s[Y];
- assert_close( ret, m * NR::Matrix(s.inverse()) );
return ret;
}
@@ -20,7 +19,6 @@ operator*(NR::Matrix const &m, NR::scale const &s)
ret[0] *= s[X]; ret[1] *= s[Y];
ret[2] *= s[X]; ret[3] *= s[Y];
ret[4] *= s[X]; ret[5] *= s[Y];
- assert_close( ret, m * NR::Matrix(s) );
return ret;
}