From eee3a4e16955edf27ee546d91fe10c6df7d80b08 Mon Sep 17 00:00:00 2001 From: dooglus Date: Tue, 30 Oct 2007 14:22:23 +0000 Subject: [PATCH] Typo: 'imperceptable' -> 'imperceptible'. git-svn-id: http://svn.voria.com/code@1038 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-core/trunk/src/synfig/color.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synfig-core/trunk/src/synfig/color.cpp b/synfig-core/trunk/src/synfig/color.cpp index a7b5133..6c4dd5b 100644 --- a/synfig-core/trunk/src/synfig/color.cpp +++ b/synfig-core/trunk/src/synfig/color.cpp @@ -385,7 +385,7 @@ blendfunc_DIVIDE(Color &a,Color &b,float amount) // We add COLOR_EPSILON in order to avoid a divide-by-zero condition. // This causes DIVIDE to bias toward positive values, but the effect is // really negligible. There is a reason why we use COLOR_EPSILON--we - // want the change to be imperceptable. + // want the change to be imperceptible. b.set_r(((b.get_r()/(a.get_r()+COLOR_EPSILON))-b.get_r())*(amount)+b.get_r()); b.set_g(((b.get_g()/(a.get_g()+COLOR_EPSILON))-b.get_g())*(amount)+b.get_g()); -- 2.7.4