From: Wolfgang Bangerth Date: Mon, 15 Oct 2001 08:38:18 +0000 (+0000) Subject: Reindent. X-Git-Tag: v8.0.0~18676 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eae477a4d35bd1a169afb2bcd7da56655cdefc48;p=dealii.git Reindent. git-svn-id: https://svn.dealii.org/trunk@5147 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/function_lib.h b/deal.II/base/include/base/function_lib.h index 40c33ed38c..941e52b523 100644 --- a/deal.II/base/include/base/function_lib.h +++ b/deal.II/base/include/base/function_lib.h @@ -795,13 +795,13 @@ namespace Functions class CutOffFunctionLinfty : public Function { public: - /** - * Constructor. Arguments are the - * center of the ball and its - * radius. - */ - CutOffFunctionLinfty (const double radius = 1., - Point = Point()); + /** + * Constructor. Arguments are the + * center of the ball and its + * radius. + */ + CutOffFunctionLinfty (const double radius = 1., + Point = Point()); /** * Function value at one point. @@ -816,16 +816,16 @@ namespace Functions std::vector &values, const unsigned int component = 0) const; - private: - /** - * Center of the integration ball. - */ - const Point center; + private: + /** + * Center of the integration ball. + */ + const Point center; - /** - * Radius of the ball. - */ - const double radius; + /** + * Radius of the ball. + */ + const double radius; }; @@ -840,13 +840,13 @@ namespace Functions class CutOffFunctionW1 : public Function { public: - /** - * Constructor. Arguments are the - * center of the ball and its - * radius. - */ - CutOffFunctionW1 (const double radius = 1., - Point = Point()); + /** + * Constructor. Arguments are the + * center of the ball and its + * radius. + */ + CutOffFunctionW1 (const double radius = 1., + Point = Point()); /** * Function value at one point. @@ -861,16 +861,16 @@ namespace Functions std::vector &values, const unsigned int component = 0) const; - private: - /** - * Center of the integration ball. - */ - const Point center; + private: + /** + * Center of the integration ball. + */ + const Point center; - /** - * Radius of the ball. - */ - const double radius; + /** + * Radius of the ball. + */ + const double radius; }; @@ -885,13 +885,13 @@ namespace Functions class CutOffFunctionCinfty : public Function { public: - /** - * Constructor. Arguments are the - * center of the ball and its - * radius. - */ - CutOffFunctionCinfty (const double radius = 1., - Point = Point()); + /** + * Constructor. Arguments are the + * center of the ball and its + * radius. + */ + CutOffFunctionCinfty (const double radius = 1., + Point = Point()); /** * Function value at one point. @@ -906,20 +906,18 @@ namespace Functions std::vector &values, const unsigned int component = 0) const; - private: - /** - * Center of the integration ball. - */ - const Point center; + private: + /** + * Center of the integration ball. + */ + const Point center; - /** - * Radius of the ball. - */ - const double radius; + /** + * Radius of the ball. + */ + const double radius; }; - - };