From: ESeNonFossiIo Date: Thu, 14 Jul 2016 16:03:04 +0000 (+0200) Subject: Grammar X-Git-Tag: v8.5.0-rc1~806^2~5 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31831f9e230b35f45ece8d3a940825b1553a7b91;p=dealii.git Grammar --- diff --git a/source/grid/manifold_lib.cc b/source/grid/manifold_lib.cc index aee78e7430..c263f0ec71 100644 --- a/source/grid/manifold_lib.cc +++ b/source/grid/manifold_lib.cc @@ -188,10 +188,10 @@ get_new_point (const Point &p1, // Find the angle gamma described by v1 and v2: const double gamma = std::acos((v1*v2)/(r1*r2)); - // Find the angle sigma that correspont to archlengh equal to w + // Find the angle sigma that corresponds to arclength equal to w const double sigma = (1-w) * gamma; - // Versor with the same direction of v1 + // Unit vector with the same direction of v1 const Tensor<1,spacedim> t = v1/r1; // Normal to v1 in the plane described by v1,v2,and the origin. Tensor<1,spacedim> n = v2 - (v2*t)*t;