]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Doc updates.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 21 Aug 2000 00:40:33 +0000 (00:40 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 21 Aug 2000 00:40:33 +0000 (00:40 +0000)
git-svn-id: https://svn.dealii.org/trunk@3263 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/base/include/base/point.h
deal.II/base/include/base/tensor_base.h

index a5f09cba674fb6e53c74fc1242f8bed449060a38..c094c31ca8122dd091abca2b7d58eb3af1361228 100644 (file)
@@ -156,148 +156,194 @@ class Point : public Tensor<1,dim>
 template <int dim>
 inline
 Point<dim>::Point (const bool initialize) :
-               Tensor<1,dim>(initialize) {};
+               Tensor<1,dim>(initialize) 
+{};
+
 
 
 template <int dim>
 inline
 Point<dim>::Point (const Tensor<1,dim> &t) :
-               Tensor<1,dim>(t) {};
+               Tensor<1,dim>(t) 
+{};
+
 
 
 template <>
 inline
-Point<1>::Point (const double x) {
+Point<1>::Point (const double x)
+{
   values[0] = x;
 };
 
 
+
 template <>
 inline
-Point<1>::Point (const double, const double) {
+Point<1>::Point (const double, const double) 
+{
   Assert (false, ExcInvalidConstructorCalled());
 };
 
 
+
 template <>
 inline
-Point<1>::Point (const double, const double, const double) {
+Point<1>::Point (const double, const double, const double) 
+{
   Assert (false, ExcInvalidConstructorCalled());
 };
 
 
 template <>
 inline
-Point<2>::Point (const double x, const double y) {
+Point<2>::Point (const double x, const double y) 
+{
   values[0] = x;
   values[1] = y;
 };
 
 
+
 template <>
 inline
-Point<2>::Point (const double, const double, const double) {
+Point<2>::Point (const double, const double, const double) 
+{
   Assert (false, ExcInvalidConstructorCalled());
 };
 
 
+
 template <>
 inline
-Point<3>::Point (const double, const double) {
+Point<3>::Point (const double, const double) 
+{
   Assert (false, ExcInvalidConstructorCalled());
 };
 
 
+
 template <>
 inline
-Point<3>::Point (const double x, const double y, const double z) {
+Point<3>::Point (const double x, const double y, const double z) 
+{
   values[0] = x;
   values[1] = y;
   values[2] = z;
 };
 
 
+
 template <>
 inline
-Point<4>::Point (const double, const double) {
+Point<4>::Point (const double, const double) 
+{
   Assert (false, ExcInvalidConstructorCalled());
 };
 
 
+
 template <>
 inline
-Point<4>::Point (const double, const double, const double) {
+Point<4>::Point (const double, const double, const double) 
+{
   Assert (false, ExcInvalidConstructorCalled());
 };
 
 
+
 template <int dim>
 inline
-double Point<dim>::operator () (const unsigned int index) const {
+double Point<dim>::operator () (const unsigned int index) const
+ {
   Assert (index<dim, ExcIndexRange (index, 0, dim));
   return values[index];
 };
 
 
+
 template <int dim>
 inline
-double & Point<dim>::operator () (const unsigned int index) {
+double & Point<dim>::operator () (const unsigned int index) 
+{
   Assert (index<dim, ExcIndexRange (index, 0, dim));
   return values[index];
 };
 
 
+
 template <int dim>
 inline
-Point<dim> Point<dim>::operator + (const Point<dim> &p) const {
+Point<dim> Point<dim>::operator + (const Point<dim> &p) const 
+{
   return (Point<dim>(*this) += p);
 };
 
 
+
 template <int dim>
 inline
-Point<dim> Point<dim>::operator - (const Point<dim> &p) const {
+Point<dim> Point<dim>::operator - (const Point<dim> &p) const 
+{
   return (Point<dim>(*this) -= p);
 };
 
 
+
 template <int dim>
 inline
-Point<dim> Point<dim>::operator * (const double factor) const {
+Point<dim> Point<dim>::operator * (const double factor) const 
+{
   return (Point<dim>(*this) *= factor);
 };
 
 
+
 template <int dim>
 inline
-double Point<dim>::operator * (const Point<dim> &p) const {
+double Point<dim>::operator * (const Point<dim> &p) const 
+{
                                   // simply pass down
   return Tensor<1,dim>::operator * (p);
 };
 
 
+
+
 template <int dim>
 inline
-Point<dim> operator * (const double factor, const Point<dim> &p) {
-  return p*factor;
+double Point<dim>::square () const 
+{
+  double q=0;
+  for (unsigned int i=0; i<dim; ++i)
+    q += values[i] * values[i];
+  return q;
 };
 
 
+
 template <int dim>
 inline
-Point<dim> Point<dim>::operator / (const double factor) const {
+Point<dim> Point<dim>::operator / (const double factor) const 
+{
   return (Point<dim>(*this) /= factor);
 };
 
 
+
+/*------------------------------- Global functions: Point ---------------------------*/
+
+
+/**
+ * Global operator scaling a point vector by a scalar.
+ */
 template <int dim>
 inline
-double Point<dim>::square () const {
-  double q=0;
-  for (unsigned int i=0; i<dim; ++i)
-    q += values[i] * values[i];
-  return q;
+Point<dim> operator * (const double factor, const Point<dim> &p) 
+{
+  return p*factor;
 };
 
 
+
 #endif
index d34c4f3f5a0a069a30772090646ececc07e0714f..39d48df79056f3c5319015aef00af51c14895ee6 100644 (file)
@@ -270,6 +270,7 @@ Tensor<1,dim>::Tensor (const bool initialize)
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim>::Tensor (const array_type &initializer)
@@ -279,6 +280,7 @@ Tensor<1,dim>::Tensor (const array_type &initializer)
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim>::Tensor (const Tensor<1,dim> &p)
@@ -288,6 +290,7 @@ Tensor<1,dim>::Tensor (const Tensor<1,dim> &p)
 };
 
 
+
 template <int dim>
 inline
 double Tensor<1,dim>::operator [] (const unsigned int index) const
@@ -297,6 +300,7 @@ double Tensor<1,dim>::operator [] (const unsigned int index) const
 };
 
 
+
 template <int dim>
 inline
 double & Tensor<1,dim>::operator [] (const unsigned int index)
@@ -306,6 +310,7 @@ double & Tensor<1,dim>::operator [] (const unsigned int index)
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim> & Tensor<1,dim>::operator = (const Tensor<1,dim> &p)
@@ -316,6 +321,7 @@ Tensor<1,dim> & Tensor<1,dim>::operator = (const Tensor<1,dim> &p)
 };
 
 
+
 template <int dim>
 inline
 bool Tensor<1,dim>::operator == (const Tensor<1,dim> &p) const
@@ -326,6 +332,7 @@ bool Tensor<1,dim>::operator == (const Tensor<1,dim> &p) const
 };
 
 
+
 template <int dim>
 inline
 bool Tensor<1,dim>::operator != (const Tensor<1,dim> &p) const
@@ -334,6 +341,7 @@ bool Tensor<1,dim>::operator != (const Tensor<1,dim> &p) const
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim> & Tensor<1,dim>::operator += (const Tensor<1,dim> &p)
@@ -344,6 +352,7 @@ Tensor<1,dim> & Tensor<1,dim>::operator += (const Tensor<1,dim> &p)
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim> & Tensor<1,dim>::operator -= (const Tensor<1,dim> &p)
@@ -354,6 +363,7 @@ Tensor<1,dim> & Tensor<1,dim>::operator -= (const Tensor<1,dim> &p)
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim> & Tensor<1,dim>::operator *= (const double &s)
@@ -364,6 +374,7 @@ Tensor<1,dim> & Tensor<1,dim>::operator *= (const double &s)
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim> & Tensor<1,dim>::operator /= (const double &s)
@@ -374,6 +385,7 @@ Tensor<1,dim> & Tensor<1,dim>::operator /= (const double &s)
 };
 
 
+
 template <int dim>
 inline
 double Tensor<1,dim>::operator * (const Tensor<1,dim> &p) const
@@ -385,6 +397,7 @@ double Tensor<1,dim>::operator * (const Tensor<1,dim> &p) const
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim> Tensor<1,dim>::operator + (const Tensor<1,dim> &p) const
@@ -393,6 +406,7 @@ Tensor<1,dim> Tensor<1,dim>::operator + (const Tensor<1,dim> &p) const
 };
 
 
+
 template <int dim>
 inline
 Tensor<1,dim> Tensor<1,dim>::operator - (const Tensor<1,dim> &p) const
@@ -401,6 +415,7 @@ Tensor<1,dim> Tensor<1,dim>::operator - (const Tensor<1,dim> &p) const
 };
 
 
+
 template <int dim>
 inline
 void Tensor<1,dim>::clear ()
@@ -410,6 +425,11 @@ void Tensor<1,dim>::clear ()
 };
 
 
+
+/**
+ * Output operator for tensors of rank 1. Print the elements
+ * consecutively, with a space in between.
+ */
 template <int dim>
 inline
 ostream & operator << (ostream &out, const Tensor<1,dim> &p)
@@ -422,6 +442,12 @@ ostream & operator << (ostream &out, const Tensor<1,dim> &p)
 };
 
 
+
+/**
+ * Output operator for tensors of rank 1 and dimension 1. This is
+ * implemented specialized from the general template in order to avoid
+ * a compiler warning that the loop is empty.
+ */
 template <>
 inline
 ostream & operator << (ostream &out, const Tensor<1,1> &p)

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.